Paper/nms-patches/EntityMushroomCow.patch

26 lines
1.0 KiB
Diff
Raw Normal View History

2015-05-25 18:37:24 +08:00
--- a/net/minecraft/server/EntityMushroomCow.java
+++ b/net/minecraft/server/EntityMushroomCow.java
2016-05-10 19:47:39 +08:00
@@ -1,6 +1,7 @@
package net.minecraft.server;
2016-05-10 19:47:39 +08:00
import javax.annotation.Nullable;
+import org.bukkit.event.player.PlayerShearEntityEvent; // CraftBukkit
2016-05-10 19:47:39 +08:00
public class EntityMushroomCow extends EntityCow {
2016-11-17 09:41:03 +08:00
@@ -27,6 +28,14 @@
2016-03-01 05:32:46 +08:00
return true;
2016-11-17 09:41:03 +08:00
} else if (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]);
2015-02-27 06:41:06 +08:00
if (!this.world.isClientSide) {