Add Entity.isOnGround(). Adds BUKKIT-3787

This commit is contained in:
Chad Waters
2013-03-17 11:59:04 -04:00
committed by Travis Watkins
parent 51da39dd27
commit be85e48979
2 changed files with 19 additions and 0 deletions

View File

@@ -530,6 +530,17 @@ public interface Player extends HumanEntity, Conversable, CommandSender, Offline
*/
public boolean canSee(Player player);
/**
* Checks to see if this player is currently standing on a block. This information may
* not be reliable, as it is a state provided by the client, and may therefore not be accurate.
*
* @return True if the player standing on a solid block, else false.
* @deprecated Inconsistent with {@link org.bukkit.craftbukkit.entity.Entity#isOnGround()}
*/
@Override
@Deprecated
public boolean isOnGround();
/**
* Checks to see if this player is currently flying or not.
*