forked from xjboss/KCauldronX
81 lines
2.4 KiB
Diff
81 lines
2.4 KiB
Diff
--- ../src-base/minecraft/org/bukkit/entity/Player.java
|
|
+++ ../src-work/minecraft/org/bukkit/entity/Player.java
|
|
@@ -1035,4 +1035,77 @@
|
|
* @see Player#setHealthScaled(boolean)
|
|
*/
|
|
public double getHealthScale();
|
|
+
|
|
+ // Spigot start
|
|
+ public class Spigot extends Entity.Spigot
|
|
+ {
|
|
+
|
|
+ /**
|
|
+ * Gets the connection address of this player, regardless of whether it
|
|
+ * has been spoofed or not.
|
|
+ *
|
|
+ * @return the player's connection address
|
|
+ */
|
|
+ public InetSocketAddress getRawAddress()
|
|
+ {
|
|
+ throw new UnsupportedOperationException( "Not supported yet." );
|
|
+ }
|
|
+
|
|
+ public void playEffect(Location location, Effect effect, int id, int data, float offsetX, float offsetY, float offsetZ, float speed, int particleCount, int radius)
|
|
+ {
|
|
+ throw new UnsupportedOperationException( "Not supported yet." );
|
|
+ }
|
|
+
|
|
+ /**
|
|
+ * Gets whether the player collides with entities
|
|
+ *
|
|
+ * @return the player's collision toggle state
|
|
+ */
|
|
+ public boolean getCollidesWithEntities()
|
|
+ {
|
|
+ throw new UnsupportedOperationException( "Not supported yet." );
|
|
+ }
|
|
+
|
|
+ /**
|
|
+ * Sets whether the player collides with entities
|
|
+ *
|
|
+ * @param collides whether the player should collide with entities or
|
|
+ * not.
|
|
+ */
|
|
+ public void setCollidesWithEntities(boolean collides)
|
|
+ {
|
|
+ throw new UnsupportedOperationException( "Not supported yet." );
|
|
+ }
|
|
+
|
|
+ /**
|
|
+ * Respawns the player if dead.
|
|
+ */
|
|
+ public void respawn()
|
|
+ {
|
|
+ throw new UnsupportedOperationException( "Not supported yet." );
|
|
+ }
|
|
+
|
|
+ /**
|
|
+ * Gets player locale language.
|
|
+ *
|
|
+ * @return the player's client language settings
|
|
+ */
|
|
+ public String getLocale()
|
|
+ {
|
|
+ throw new UnsupportedOperationException( "Not supported yet." );
|
|
+ }
|
|
+
|
|
+ /**
|
|
+ * Gets all players hidden with {@link hidePlayer(org.bukkit.entity.Player)}.
|
|
+ *
|
|
+ * @return a Set with all hidden players
|
|
+ */
|
|
+ public java.util.Set<Player> getHiddenPlayers()
|
|
+ {
|
|
+ throw new UnsupportedOperationException( "Not supported yet." );
|
|
+ }
|
|
+ }
|
|
+
|
|
+ Spigot spigot();
|
|
+ // Spigot end
|
|
}
|