This commit is contained in:
坏黑
2018-04-26 23:33:44 +08:00
parent 381d96c5b1
commit 93e84b1b80
40 changed files with 444 additions and 278 deletions

View File

@@ -24,17 +24,20 @@ public class PlayerJumpEvent
return this.player;
}
public boolean isCancelled()
@Override
public boolean isCancelled()
{
return this.isCancelled;
}
public void setCancelled(boolean e)
@Override
public void setCancelled(boolean e)
{
this.isCancelled = e;
}
public HandlerList getHandlers()
@Override
public HandlerList getHandlers()
{
return handlers;
}