Added PlayerToggleSneakEvent.isSneaking().

This commit is contained in:
sk89q 2011-06-18 14:34:59 -07:00
parent c42ee3f065
commit 54245e3a6c

View File

@ -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;
}
/**