diff options
Diffstat (limited to 'nms-patches/ItemFish.patch')
-rw-r--r-- | nms-patches/ItemFish.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/nms-patches/ItemFish.patch b/nms-patches/ItemFish.patch new file mode 100644 index 00000000..8b52880f --- /dev/null +++ b/nms-patches/ItemFish.patch @@ -0,0 +1,17 @@ +--- a/net/minecraft/server/ItemFish.java ++++ b/net/minecraft/server/ItemFish.java +@@ -25,9 +25,11 @@ + ItemFish.EnumFish itemfish_enumfish = ItemFish.EnumFish.a(itemstack); + + if (itemfish_enumfish == ItemFish.EnumFish.PUFFERFISH) { +- entityhuman.addEffect(new MobEffect(MobEffects.POISON, 1200, 3)); +- entityhuman.addEffect(new MobEffect(MobEffects.HUNGER, 300, 2)); +- entityhuman.addEffect(new MobEffect(MobEffects.CONFUSION, 300, 1)); ++ // CraftBukkit start ++ entityhuman.addEffect(new MobEffect(MobEffects.POISON, 1200, 3), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.FOOD); ++ entityhuman.addEffect(new MobEffect(MobEffects.HUNGER, 300, 2), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.FOOD); ++ entityhuman.addEffect(new MobEffect(MobEffects.CONFUSION, 300, 1), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.FOOD); ++ // CraftBukkit end + } + + super.a(itemstack, world, entityhuman); |