mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 03:52:45 +01:00
65bc2541a3
By: md_5 <git@md-5.net>
42 lines
2 KiB
Diff
42 lines
2 KiB
Diff
--- a/net/minecraft/world/entity/monster/EntitySilverfish.java
|
|
+++ b/net/minecraft/world/entity/monster/EntitySilverfish.java
|
|
@@ -30,6 +30,11 @@
|
|
import net.minecraft.world.level.block.BlockMonsterEggs;
|
|
import net.minecraft.world.level.block.state.IBlockData;
|
|
|
|
+// CraftBukkit start
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
+import org.bukkit.event.entity.EntityRemoveEvent;
|
|
+// CraftBukkit end
|
|
+
|
|
public class EntitySilverfish extends EntityMonster {
|
|
|
|
@Nullable
|
|
@@ -157,6 +162,11 @@
|
|
Block block = iblockdata.getBlock();
|
|
|
|
if (block instanceof BlockMonsterEggs) {
|
|
+ // CraftBukkit start
|
|
+ if (!CraftEventFactory.callEntityChangeBlockEvent(this.silverfish, blockposition1, net.minecraft.world.level.block.Blocks.AIR.defaultBlockState())) {
|
|
+ continue;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
if (world.getGameRules().getBoolean(GameRules.RULE_MOBGRIEFING)) {
|
|
world.destroyBlock(blockposition1, true, this.silverfish);
|
|
} else {
|
|
@@ -226,9 +236,14 @@
|
|
IBlockData iblockdata = world.getBlockState(blockposition);
|
|
|
|
if (BlockMonsterEggs.isCompatibleHostBlock(iblockdata)) {
|
|
+ // CraftBukkit start
|
|
+ if (!CraftEventFactory.callEntityChangeBlockEvent(this.mob, blockposition, BlockMonsterEggs.infestedStateByHost(iblockdata))) {
|
|
+ return;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
world.setBlock(blockposition, BlockMonsterEggs.infestedStateByHost(iblockdata), 3);
|
|
this.mob.spawnAnim();
|
|
- this.mob.discard();
|
|
+ this.mob.discard(EntityRemoveEvent.Cause.ENTER_BLOCK); // CraftBukkit - add Bukkit remove cause
|
|
}
|
|
|
|
}
|