mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 03:52:45 +01:00
43702a9e10
By: md_5 <git@md-5.net>
11 lines
726 B
Diff
11 lines
726 B
Diff
--- a/net/minecraft/world/entity/monster/EntityRavager.java
|
|
+++ b/net/minecraft/world/entity/monster/EntityRavager.java
|
|
@@ -168,7 +168,7 @@
|
|
IBlockData iblockdata = this.level.getBlockState(blockposition);
|
|
Block block = iblockdata.getBlock();
|
|
|
|
- if (block instanceof BlockLeaves) {
|
|
+ if (block instanceof BlockLeaves && !org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(this, blockposition, net.minecraft.world.level.block.Blocks.AIR.defaultBlockState()).isCancelled()) { // CraftBukkit
|
|
flag = this.level.destroyBlock(blockposition, true, this) || flag;
|
|
}
|
|
}
|