summaryrefslogtreecommitdiffstats
path: root/nms-patches/EntityMushroomCow.patch
blob: a57f1e05fc424d6e0998402fa55b901cc176c17a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--- ../work/decompile-8eb82bde//net/minecraft/server/EntityMushroomCow.java	2014-11-28 17:43:43.137707434 +0000
+++ src/main/java/net/minecraft/server/EntityMushroomCow.java	2014-11-28 17:38:23.000000000 +0000
@@ -1,5 +1,7 @@
 package net.minecraft.server;
 
+import org.bukkit.event.player.PlayerShearEntityEvent; // CraftBukkit
+
 public class EntityMushroomCow extends EntityCow {
 
     public EntityMushroomCow(World world) {
@@ -24,6 +26,15 @@
         }
 
         if (itemstack != null && itemstack.getItem() == Items.SHEARS && this.getAge() >= 0) {
+            // CraftBukkit start
+            PlayerShearEntityEvent event = new PlayerShearEntityEvent((org.bukkit.entity.Player) entityhuman.getBukkitEntity(), this.getBukkitEntity());
+            this.world.getServer().getPluginManager().callEvent(event);
+
+            if (event.isCancelled()) {
+                return false;
+            }
+            // CraftBukkit end
+            
             this.die();
             this.world.addParticle(EnumParticle.EXPLOSION_LARGE, this.locX, this.locY + (double) (this.length / 2.0F), this.locZ, 0.0D, 0.0D, 0.0D, new int[0]);
             if (!this.world.isStatic) {