mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 19:49:35 +01:00
65bc2541a3
By: md_5 <git@md-5.net>
11 lines
460 B
Diff
11 lines
460 B
Diff
--- a/net/minecraft/world/item/ItemMilkBucket.java
|
|
+++ b/net/minecraft/world/item/ItemMilkBucket.java
|
|
@@ -26,7 +26,7 @@
|
|
|
|
itemstack.consume(1, entityliving);
|
|
if (!world.isClientSide) {
|
|
- entityliving.removeAllEffects();
|
|
+ entityliving.removeAllEffects(org.bukkit.event.entity.EntityPotionEffectEvent.Cause.MILK); // CraftBukkit
|
|
}
|
|
|
|
return itemstack.isEmpty() ? new ItemStack(Items.BUCKET) : itemstack;
|