mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
20 lines
1.2 KiB
Diff
20 lines
1.2 KiB
Diff
|
--- a/net/minecraft/server/ItemGoldenAppleEnchanted.java
|
||
|
+++ b/net/minecraft/server/ItemGoldenAppleEnchanted.java
|
||
|
@@ -8,10 +8,12 @@
|
||
|
|
||
|
protected void a(ItemStack itemstack, World world, EntityHuman entityhuman) {
|
||
|
if (!world.isClientSide) {
|
||
|
- entityhuman.addEffect(new MobEffect(MobEffects.REGENERATION, 400, 1));
|
||
|
- entityhuman.addEffect(new MobEffect(MobEffects.RESISTANCE, 6000, 0));
|
||
|
- entityhuman.addEffect(new MobEffect(MobEffects.FIRE_RESISTANCE, 6000, 0));
|
||
|
- entityhuman.addEffect(new MobEffect(MobEffects.ABSORBTION, 2400, 3));
|
||
|
+ // CraftBukkit start
|
||
|
+ entityhuman.addEffect(new MobEffect(MobEffects.REGENERATION, 400, 1), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.FOOD);
|
||
|
+ entityhuman.addEffect(new MobEffect(MobEffects.RESISTANCE, 6000, 0), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.FOOD);
|
||
|
+ entityhuman.addEffect(new MobEffect(MobEffects.FIRE_RESISTANCE, 6000, 0), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.FOOD);
|
||
|
+ entityhuman.addEffect(new MobEffect(MobEffects.ABSORBTION, 2400, 3), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.FOOD);
|
||
|
+ // CraftBukkit end
|
||
|
}
|
||
|
|
||
|
}
|