3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 12:30:06 +01:00

SPIGOT-4700: Add PlayerFishEvent.State.REEL_IN

Dieser Commit ist enthalten in:
md_5 2019-04-15 20:42:51 +10:00
Ursprung 7c395d429c
Commit be557e69fa

Datei anzeigen

@ -105,7 +105,7 @@
} }
+ // CraftBukkit start + // CraftBukkit start
+ if (i == 0) { + 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); + this.world.getServer().getPluginManager().callEvent(playerFishEvent);
+ if (playerFishEvent.isCancelled()) { + if (playerFishEvent.isCancelled()) {
+ return 0; + return 0;