Add Entity.isOnGround(). Adds BUKKIT-3787

By: Chad Waters <authorblues@gmail.com>
This commit is contained in:
Bukkit/Spigot
2013-03-17 11:59:04 -04:00
parent a6d0d62b06
commit b7588566f2
2 changed files with 19 additions and 0 deletions

View File

@@ -46,6 +46,14 @@ public interface Entity extends Metadatable {
*/
public Vector getVelocity();
/**
* Returns true if the entity is supported by a block. This value is a state
* updated by the server and is not recalculated unless the entity moves.
*
* @return True if entity is on ground.
*/
public boolean isOnGround();
/**
* Gets the current world this entity resides in
*