mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 18:31:29 +01:00
814c742554
Discussion ongoing in PR #449
18 lines
1.0 KiB
Diff
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);
|