mirror of
https://hub.spigotmc.org/stash/scm/spigot/spigot.git
synced 2025-08-21 05:54:59 +00:00
27 lines
884 B
Diff
27 lines
884 B
Diff
From 8533b72f9b6007d9a9dc0ebec804debf3d8e146a Mon Sep 17 00:00:00 2001
|
|
From: ninja- <xninja@openmailbox.org>
|
|
Date: Tue, 8 Oct 2013 14:35:58 +0200
|
|
Subject: [PATCH] Add respawn API.
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java
|
|
index 6ad868b2..0aa162cf 100644
|
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
|
@@ -1782,6 +1782,13 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
|
public InetSocketAddress getRawAddress() {
|
|
throw new UnsupportedOperationException("Not supported yet.");
|
|
}
|
|
+
|
|
+ /**
|
|
+ * Respawns the player if dead.
|
|
+ */
|
|
+ public void respawn() {
|
|
+ throw new UnsupportedOperationException("Not supported yet.");
|
|
+ }
|
|
}
|
|
|
|
@NotNull
|
|
--
|
|
2.40.1
|
|
|