mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 03:52:45 +01:00
8a3c8cfcd4
By: md_5 <git@md-5.net>
37 lines
1.8 KiB
Diff
37 lines
1.8 KiB
Diff
--- a/net/minecraft/world/entity/monster/EntitySilverfish.java
|
|
+++ b/net/minecraft/world/entity/monster/EntitySilverfish.java
|
|
@@ -34,6 +34,10 @@
|
|
import net.minecraft.world.level.block.state.IBlockData;
|
|
import org.joml.Vector3f;
|
|
|
|
+// CraftBukkit start
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
+// CraftBukkit end
|
|
+
|
|
public class EntitySilverfish extends EntityMonster {
|
|
|
|
@Nullable
|
|
@@ -176,6 +180,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 {
|
|
@@ -245,6 +254,11 @@
|
|
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();
|