SPIGOT-4700: Add PlayerFishEvent.State.REEL_IN

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2019-04-15 20:42:51 +10:00
parent f890a5eedc
commit c6d3a7e5c4

View file

@ -105,7 +105,7 @@
}
+ // CraftBukkit start
+ if (i == 0) {
+ PlayerFishEvent playerFishEvent = new PlayerFishEvent((Player) this.owner.getBukkitEntity(), null, (FishHook) this.getBukkitEntity(), PlayerFishEvent.State.FAILED_ATTEMPT);
+ PlayerFishEvent playerFishEvent = new PlayerFishEvent((Player) this.owner.getBukkitEntity(), null, (FishHook) this.getBukkitEntity(), PlayerFishEvent.State.REEL_IN);
+ this.world.getServer().getPluginManager().callEvent(playerFishEvent);
+ if (playerFishEvent.isCancelled()) {
+ return 0;