3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-15 20:40:07 +01:00
Paper/nms-patches/BlockTallPlant.patch

15 Zeilen
676 B
Diff

--- a/net/minecraft/server/BlockTallPlant.java
+++ b/net/minecraft/server/BlockTallPlant.java
2020-06-25 02:00:00 +02:00
@@ -66,6 +66,11 @@
}
2020-06-25 02:00:00 +02:00
protected static void b(World world, BlockPosition blockposition, IBlockData iblockdata, EntityHuman entityhuman) {
2018-07-15 02:00:00 +02:00
+ // CraftBukkit start
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.callBlockPhysicsEvent(world, blockposition).isCancelled()) {
+ return;
+ }
+ // CraftBukkit end
BlockPropertyDoubleBlockHalf blockpropertydoubleblockhalf = (BlockPropertyDoubleBlockHalf) iblockdata.get(BlockTallPlant.HALF);
2020-06-25 02:00:00 +02:00
if (blockpropertydoubleblockhalf == BlockPropertyDoubleBlockHalf.UPPER) {