mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 03:52:45 +01:00
9ee989ea81
By: md_5 <git@md-5.net>
65 lines
3.3 KiB
Diff
65 lines
3.3 KiB
Diff
--- a/net/minecraft/world/entity/animal/EntityMushroomCow.java
|
|
+++ b/net/minecraft/world/entity/animal/EntityMushroomCow.java
|
|
@@ -43,6 +43,13 @@
|
|
import net.minecraft.world.level.gameevent.GameEvent;
|
|
import org.apache.commons.lang3.tuple.Pair;
|
|
|
|
+// CraftBukkit start
|
|
+import org.bukkit.Bukkit;
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
+import org.bukkit.event.entity.EntityDropItemEvent;
|
|
+import org.bukkit.event.entity.EntityTransformEvent;
|
|
+// CraftBukkit end
|
|
+
|
|
public class EntityMushroomCow extends EntityCow implements IShearable {
|
|
|
|
private static final DataWatcherObject<String> DATA_TYPE = DataWatcher.defineId(EntityMushroomCow.class, DataWatcherRegistry.STRING);
|
|
@@ -116,6 +123,11 @@
|
|
this.playSound(soundeffect, 1.0F, 1.0F);
|
|
return EnumInteractionResult.sidedSuccess(this.level.isClientSide);
|
|
} else if (itemstack.is(Items.SHEARS) && this.readyForShearing()) {
|
|
+ // CraftBukkit start
|
|
+ if (!CraftEventFactory.handlePlayerShearEntityEvent(entityhuman, this, itemstack, enumhand)) {
|
|
+ return EnumInteractionResult.PASS;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
this.shear(SoundCategory.PLAYERS);
|
|
this.gameEvent(GameEvent.SHEAR, (Entity) entityhuman);
|
|
if (!this.level.isClientSide) {
|
|
@@ -163,7 +175,7 @@
|
|
this.level.playSound((EntityHuman) null, (Entity) this, SoundEffects.MOOSHROOM_SHEAR, soundcategory, 1.0F, 1.0F);
|
|
if (!this.level.isClientSide()) {
|
|
((WorldServer) this.level).sendParticles(Particles.EXPLOSION, this.getX(), this.getY(0.5D), this.getZ(), 1, 0.0D, 0.0D, 0.0D, 0.0D);
|
|
- this.discard();
|
|
+ // this.discard(); // CraftBukkit - moved down
|
|
EntityCow entitycow = (EntityCow) EntityTypes.COW.create(this.level);
|
|
|
|
entitycow.moveTo(this.getX(), this.getY(), this.getZ(), this.getYRot(), this.getXRot());
|
|
@@ -179,10 +191,25 @@
|
|
}
|
|
|
|
entitycow.setInvulnerable(this.isInvulnerable());
|
|
- this.level.addFreshEntity(entitycow);
|
|
+ // CraftBukkit start
|
|
+ if (CraftEventFactory.callEntityTransformEvent(this, entitycow, EntityTransformEvent.TransformReason.SHEARED).isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+ this.level.addFreshEntity(entitycow, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.SHEARED);
|
|
+
|
|
+ this.discard(); // CraftBukkit - from above
|
|
+ // CraftBukkit end
|
|
|
|
for (int i = 0; i < 5; ++i) {
|
|
- this.level.addFreshEntity(new EntityItem(this.level, this.getX(), this.getY(1.0D), this.getZ(), new ItemStack(this.getMushroomType().blockState.getBlock())));
|
|
+ // CraftBukkit start
|
|
+ EntityItem entityitem = new EntityItem(this.level, this.getX(), this.getY(1.0D), this.getZ(), new ItemStack(this.getMushroomType().blockState.getBlock()));
|
|
+ EntityDropItemEvent event = new EntityDropItemEvent(this.getBukkitEntity(), (org.bukkit.entity.Item) entityitem.getBukkitEntity());
|
|
+ Bukkit.getPluginManager().callEvent(event);
|
|
+ if (event.isCancelled()) {
|
|
+ continue;
|
|
+ }
|
|
+ this.level.addFreshEntity(entityitem);
|
|
+ // CraftBukkit end
|
|
}
|
|
}
|
|
|