mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 12:02:36 +01:00
9da047989c
By: md_5 <git@md-5.net>
14 lines
698 B
Diff
14 lines
698 B
Diff
--- a/net/minecraft/world/level/block/BlockTallPlant.java
|
|
+++ b/net/minecraft/world/level/block/BlockTallPlant.java
|
|
@@ -82,6 +82,11 @@
|
|
}
|
|
|
|
protected static void b(World world, BlockPosition blockposition, IBlockData iblockdata, EntityHuman entityhuman) {
|
|
+ // CraftBukkit start
|
|
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.callBlockPhysicsEvent(world, blockposition).isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
BlockPropertyDoubleBlockHalf blockpropertydoubleblockhalf = (BlockPropertyDoubleBlockHalf) iblockdata.get(BlockTallPlant.HALF);
|
|
|
|
if (blockpropertydoubleblockhalf == BlockPropertyDoubleBlockHalf.UPPER) {
|