SPIGOT-2656: HumanEntity#isHandRaised()Z

This commit is contained in:
md_5 2016-09-04 11:59:33 +10:00
parent a25e56c4b6
commit 9fdd2ce60d

View file

@ -189,12 +189,20 @@ public interface HumanEntity extends LivingEntity, AnimalTamer, Permissible, Inv
public void setGameMode(GameMode mode); public void setGameMode(GameMode mode);
/** /**
* Check if the player is currently blocking (ie with a sword). * Check if the player is currently blocking (ie with a shield).
* *
* @return Whether they are blocking. * @return Whether they are blocking.
*/ */
public boolean isBlocking(); public boolean isBlocking();
/**
* Check if the player currently has their hand raised (ie about to begin
* blocking).
*
* @return Whether their hand is raised
*/
public boolean isHandRaised();
/** /**
* Get the total amount of experience required for the player to level * Get the total amount of experience required for the player to level
* *