mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-19 06:42:02 +01:00
Added PlayerToggleSneakEvent.isSneaking().
By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
parent
c3373081e2
commit
2a62ac59bf
@ -8,10 +8,21 @@ import org.bukkit.event.Cancellable;
|
||||
* @author azi
|
||||
*/
|
||||
public class PlayerToggleSneakEvent extends PlayerEvent implements Cancellable {
|
||||
private boolean isSneaking;
|
||||
private boolean cancel = false;
|
||||
|
||||
public PlayerToggleSneakEvent(final Player player) {
|
||||
public PlayerToggleSneakEvent(final Player player, boolean isSneaking) {
|
||||
super(Type.PLAYER_TOGGLE_SNEAK, player);
|
||||
this.isSneaking = isSneaking;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns whether the player is now sneaking.
|
||||
*
|
||||
* @return sneaking state
|
||||
*/
|
||||
public boolean isSneaking() {
|
||||
return isSneaking;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user