2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/EntityMushroomCow.java
|
|
|
|
+++ b/net/minecraft/server/EntityMushroomCow.java
|
2018-11-14 04:10:22 +01:00
|
|
|
@@ -2,6 +2,12 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2016-05-10 13:47:39 +02:00
|
|
|
import javax.annotation.Nullable;
|
|
|
|
|
2018-11-14 04:10:22 +01:00
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
+import org.bukkit.event.entity.EntityTransformEvent;
|
|
|
|
+import org.bukkit.event.player.PlayerShearEntityEvent;
|
|
|
|
+// CraftBukkit end
|
|
|
|
+
|
2014-11-25 22:32:16 +01:00
|
|
|
public class EntityMushroomCow extends EntityCow {
|
|
|
|
|
2018-11-14 04:10:22 +01:00
|
|
|
public EntityMushroomCow(World world) {
|
2018-12-04 23:51:20 +01:00
|
|
|
@@ -23,9 +29,17 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
return true;
|
2016-11-17 02:41:03 +01:00
|
|
|
} else if (itemstack.getItem() == Items.SHEARS && this.getAge() >= 0) {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // 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
|
2018-07-15 02:00:00 +02:00
|
|
|
this.world.addParticle(Particles.u, this.locX, this.locY + (double) (this.length / 2.0F), this.locZ, 0.0D, 0.0D, 0.0D);
|
2015-02-26 23:41:06 +01:00
|
|
|
if (!this.world.isClientSide) {
|
2018-12-04 23:51:20 +01:00
|
|
|
- this.die();
|
|
|
|
+ // this.die(); // CraftBukkit - moved down
|
|
|
|
EntityCow entitycow = new EntityCow(this.world);
|
|
|
|
|
|
|
|
entitycow.setPositionRotation(this.locX, this.locY, this.locZ, this.yaw, this.pitch);
|
|
|
|
@@ -35,7 +49,14 @@
|
2018-11-14 04:10:22 +01:00
|
|
|
entitycow.setCustomName(this.getCustomName());
|
|
|
|
}
|
|
|
|
|
2018-11-14 04:17:25 +01:00
|
|
|
- this.world.addEntity(entitycow);
|
2018-11-14 04:10:22 +01:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ if (CraftEventFactory.callEntityTransformEvent(this, entitycow, EntityTransformEvent.TransformReason.SHEARED).isCancelled()) {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
2018-11-14 04:17:25 +01:00
|
|
|
+ this.world.addEntity(entitycow, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.SHEARED);
|
2018-12-04 23:51:20 +01:00
|
|
|
+
|
|
|
|
+ this.die(); // CraftBukkit - from above
|
2018-11-14 04:10:22 +01:00
|
|
|
+ // CraftBukkit end
|
|
|
|
|
|
|
|
for (int i = 0; i < 5; ++i) {
|
2018-11-14 04:17:25 +01:00
|
|
|
this.world.addEntity(new EntityItem(this.world, this.locX, this.locY + (double) this.length, this.locZ, new ItemStack(Blocks.RED_MUSHROOM)));
|