mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 18:31:29 +01:00
814c742554
Discussion ongoing in PR #449
16 lines
774 B
Diff
16 lines
774 B
Diff
--- a/net/minecraft/server/ItemGoldenApple.java
|
|
+++ b/net/minecraft/server/ItemGoldenApple.java
|
|
@@ -8,8 +8,10 @@
|
|
|
|
protected void a(ItemStack itemstack, World world, EntityHuman entityhuman) {
|
|
if (!world.isClientSide) {
|
|
- entityhuman.addEffect(new MobEffect(MobEffects.REGENERATION, 100, 1));
|
|
- entityhuman.addEffect(new MobEffect(MobEffects.ABSORBTION, 2400, 0));
|
|
+ // CraftBukkit start
|
|
+ entityhuman.addEffect(new MobEffect(MobEffects.REGENERATION, 100, 1), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.FOOD);
|
|
+ entityhuman.addEffect(new MobEffect(MobEffects.ABSORBTION, 2400, 0), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.FOOD);
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
}
|