Paper/nms-patches/ItemFish.patch
2018-07-20 16:06:34 +10:00

18 lines
1.0 KiB
Diff

--- 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);