mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 19:49:35 +01:00
SPIGOT-2656: HumanEntity#isHandRaised()Z
By: md_5 <git@md-5.net>
This commit is contained in:
parent
aaf720af60
commit
8a52090a25
1 changed files with 9 additions and 1 deletions
|
@ -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
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue