Paper/nms-patches/EntityFishingHook.patch

110 lines
5.7 KiB
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/EntityFishingHook.java
+++ b/net/minecraft/server/EntityFishingHook.java
2020-06-25 02:00:00 +02:00
@@ -6,6 +6,11 @@
import java.util.List;
2020-06-25 02:00:00 +02:00
import java.util.Random;
2019-04-23 04:00:00 +02:00
import javax.annotation.Nullable;
+// CraftBukkit start
+import org.bukkit.entity.Player;
2018-07-15 02:00:00 +02:00
+import org.bukkit.entity.FishHook;
+import org.bukkit.event.player.PlayerFishEvent;
+// CraftBukkit end
2016-11-17 02:41:03 +01:00
2020-06-25 02:00:00 +02:00
public class EntityFishingHook extends IProjectile {
2020-06-25 02:00:00 +02:00
@@ -253,6 +258,10 @@
this.ao = 0;
2019-12-10 23:00:00 +01:00
this.ap = 0;
2020-06-25 02:00:00 +02:00
this.getDataWatcher().set(EntityFishingHook.f, false);
2016-11-17 02:41:03 +01:00
+ // CraftBukkit start
2020-06-25 02:00:00 +02:00
+ PlayerFishEvent playerFishEvent = new PlayerFishEvent((Player) this.getOwner().getBukkitEntity(), null, (FishHook) this.getBukkitEntity(), PlayerFishEvent.State.FAILED_ATTEMPT);
2016-11-17 02:41:03 +01:00
+ this.world.getServer().getPluginManager().callEvent(playerFishEvent);
+ // CraftBukkit end
}
2020-06-25 02:00:00 +02:00
} else {
float f;
@@ -286,6 +295,13 @@
2019-04-23 04:00:00 +02:00
worldserver.a(Particles.FISHING, d0, d1, d2, 0, (double) (-f4), 0.01D, (double) f3, 1.0D);
2016-11-17 02:41:03 +01:00
}
} else {
+ // CraftBukkit start
2020-06-25 02:00:00 +02:00
+ PlayerFishEvent playerFishEvent = new PlayerFishEvent((Player) this.getOwner().getBukkitEntity(), null, (FishHook) this.getBukkitEntity(), PlayerFishEvent.State.BITE);
2016-11-17 02:41:03 +01:00
+ this.world.getServer().getPluginManager().callEvent(playerFishEvent);
+ if (playerFishEvent.isCancelled()) {
+ return;
+ }
+ // CraftBukkit end
2020-06-25 02:00:00 +02:00
this.playSound(SoundEffects.ENTITY_FISHING_BOBBER_SPLASH, 0.25F, 1.0F + (this.random.nextFloat() - this.random.nextFloat()) * 0.4F);
double d3 = this.locY() + 0.5D;
2019-04-23 04:00:00 +02:00
2020-06-25 02:00:00 +02:00
@@ -390,6 +406,14 @@
int i = 0;
if (this.hooked != null) {
+ // CraftBukkit start
2020-06-25 02:00:00 +02:00
+ PlayerFishEvent playerFishEvent = new PlayerFishEvent((Player) entityhuman.getBukkitEntity(), this.hooked.getBukkitEntity(), (FishHook) this.getBukkitEntity(), PlayerFishEvent.State.CAUGHT_ENTITY);
+ this.world.getServer().getPluginManager().callEvent(playerFishEvent);
+
+ if (playerFishEvent.isCancelled()) {
+ return 0;
+ }
+ // CraftBukkit end
2019-04-23 04:00:00 +02:00
this.reel();
2020-06-25 02:00:00 +02:00
CriterionTriggers.D.a((EntityPlayer) entityhuman, itemstack, this, (Collection) Collections.emptyList());
this.world.broadcastEntityEffect(this, (byte) 31);
2020-06-25 02:00:00 +02:00
@@ -405,6 +429,15 @@
2016-02-29 22:32:46 +01:00
while (iterator.hasNext()) {
2018-07-15 02:00:00 +02:00
ItemStack itemstack1 = (ItemStack) iterator.next();
2019-12-10 23:00:00 +01:00
EntityItem entityitem = new EntityItem(this.world, this.locX(), this.locY(), this.locZ(), itemstack1);
2016-02-29 22:32:46 +01:00
+ // CraftBukkit start
2020-06-25 02:00:00 +02:00
+ PlayerFishEvent playerFishEvent = new PlayerFishEvent((Player) entityhuman.getBukkitEntity(), entityitem.getBukkitEntity(), (FishHook) this.getBukkitEntity(), PlayerFishEvent.State.CAUGHT_FISH);
2016-02-29 22:32:46 +01:00
+ playerFishEvent.setExpToDrop(this.random.nextInt(6) + 1);
+ this.world.getServer().getPluginManager().callEvent(playerFishEvent);
+
2016-02-29 22:32:46 +01:00
+ if (playerFishEvent.isCancelled()) {
+ return 0;
+ }
+ // CraftBukkit end
2020-06-25 02:00:00 +02:00
double d0 = entityhuman.locX() - this.locX();
double d1 = entityhuman.locY() - this.locY();
double d2 = entityhuman.locZ() - this.locZ();
@@ -412,7 +445,11 @@
2019-04-23 04:00:00 +02:00
entityitem.setMot(d0 * 0.1D, d1 * 0.1D + Math.sqrt(Math.sqrt(d0 * d0 + d1 * d1 + d2 * d2)) * 0.08D, d2 * 0.1D);
2016-02-29 22:32:46 +01:00
this.world.addEntity(entityitem);
2020-06-25 02:00:00 +02:00
- entityhuman.world.addEntity(new EntityExperienceOrb(entityhuman.world, entityhuman.locX(), entityhuman.locY() + 0.5D, entityhuman.locZ() + 0.5D, this.random.nextInt(6) + 1));
2016-02-29 22:32:46 +01:00
+ // CraftBukkit start - this.random.nextInt(6) + 1 -> playerFishEvent.getExpToDrop()
+ if (playerFishEvent.getExpToDrop() > 0) {
2020-06-25 02:00:00 +02:00
+ entityhuman.world.addEntity(new EntityExperienceOrb(entityhuman.world, entityhuman.locX(), entityhuman.locY() + 0.5D, entityhuman.locZ() + 0.5D, playerFishEvent.getExpToDrop()));
2016-02-29 22:32:46 +01:00
+ }
2016-11-17 02:41:03 +01:00
+ // CraftBukkit end
2020-06-25 02:00:00 +02:00
if (itemstack1.getItem().a((Tag) TagsItem.FISHES)) {
entityhuman.a(StatisticList.FISH_CAUGHT, 1);
2018-07-15 02:00:00 +02:00
}
2020-06-25 02:00:00 +02:00
@@ -422,8 +459,25 @@
}
2020-06-25 02:00:00 +02:00
if (this.onGround) {
+ // CraftBukkit start
2020-06-25 02:00:00 +02:00
+ PlayerFishEvent playerFishEvent = new PlayerFishEvent((Player) entityhuman.getBukkitEntity(), null, (FishHook) this.getBukkitEntity(), PlayerFishEvent.State.IN_GROUND);
+ this.world.getServer().getPluginManager().callEvent(playerFishEvent);
+
+ if (playerFishEvent.isCancelled()) {
+ return 0;
+ }
+ // CraftBukkit end
2016-02-29 22:32:46 +01:00
i = 2;
}
+ // CraftBukkit start
+ if (i == 0) {
2020-06-25 02:00:00 +02:00
+ PlayerFishEvent playerFishEvent = new PlayerFishEvent((Player) entityhuman.getBukkitEntity(), null, (FishHook) this.getBukkitEntity(), PlayerFishEvent.State.REEL_IN);
+ this.world.getServer().getPluginManager().callEvent(playerFishEvent);
+ if (playerFishEvent.isCancelled()) {
+ return 0;
+ }
+ }
+ // CraftBukkit end
2015-02-26 23:41:06 +01:00
this.die();
2016-11-17 02:41:03 +01:00
return i;