mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 04:09:54 +01:00
Made PlayerAnimation cancellable. Thanks desmin88!
This commit is contained in:
parent
7d4ec8b183
commit
817cd83f0b
@ -785,6 +785,8 @@ public class NetServerHandler extends NetHandler implements ICommandListener {
|
||||
// Arm swing animation
|
||||
PlayerAnimationEvent event = new PlayerAnimationEvent(this.getPlayer());
|
||||
this.server.getPluginManager().callEvent(event);
|
||||
|
||||
if (event.isCancelled()) return;
|
||||
// CraftBukkit end
|
||||
|
||||
this.player.w();
|
||||
|
Loading…
Reference in New Issue
Block a user