2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/EntityCow.java
|
|
|
|
+++ b/net/minecraft/server/EntityCow.java
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -1,6 +1,10 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2016-05-10 13:47:39 +02:00
|
|
|
import javax.annotation.Nullable;
|
2014-11-25 22:32:16 +01:00
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
+import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
|
|
|
+// CraftBukkit end
|
2016-05-10 13:47:39 +02:00
|
|
|
|
2014-11-25 22:32:16 +01:00
|
|
|
public class EntityCow extends EntityAnimal {
|
|
|
|
|
2016-11-17 02:41:03 +01:00
|
|
|
@@ -59,13 +63,23 @@
|
|
|
|
ItemStack itemstack = entityhuman.b(enumhand);
|
2015-02-26 23:41:06 +01:00
|
|
|
|
2016-11-17 02:41:03 +01:00
|
|
|
if (itemstack.getItem() == Items.BUCKET && !entityhuman.abilities.canInstantlyBuild && !this.isBaby()) {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start - Got milk?
|
|
|
|
+ org.bukkit.Location loc = this.getBukkitEntity().getLocation();
|
|
|
|
+ org.bukkit.event.player.PlayerBucketFillEvent event = CraftEventFactory.callPlayerBucketFillEvent(entityhuman, loc.getBlockX(), loc.getBlockY(), loc.getBlockZ(), null, itemstack, Items.MILK_BUCKET);
|
|
|
|
+
|
|
|
|
+ if (event.isCancelled()) {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ ItemStack result = CraftItemStack.asNMSCopy(event.getItemStack());
|
2018-07-15 02:00:00 +02:00
|
|
|
entityhuman.a(SoundEffects.ENTITY_COW_MILK, 1.0F, 1.0F);
|
2016-11-17 02:41:03 +01:00
|
|
|
itemstack.subtract(1);
|
|
|
|
if (itemstack.isEmpty()) {
|
2016-02-29 22:32:46 +01:00
|
|
|
- entityhuman.a(enumhand, new ItemStack(Items.MILK_BUCKET));
|
|
|
|
- } else if (!entityhuman.inventory.pickup(new ItemStack(Items.MILK_BUCKET))) {
|
|
|
|
- entityhuman.drop(new ItemStack(Items.MILK_BUCKET), false);
|
|
|
|
+ entityhuman.a(enumhand, result);
|
2014-11-25 22:32:16 +01:00
|
|
|
+ } else if (!entityhuman.inventory.pickup(result)) {
|
|
|
|
+ entityhuman.drop(result, false);
|
|
|
|
}
|
|
|
|
+ // CraftBukkit end
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} else {
|