mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-10 17:42:16 +01:00
15 lines
735 B
Diff
15 lines
735 B
Diff
--- a/net/minecraft/world/level/block/BlockTallPlant.java
|
|
+++ b/net/minecraft/world/level/block/BlockTallPlant.java
|
|
@@ -92,6 +92,11 @@
|
|
}
|
|
|
|
protected static void preventCreativeDropFromBottomPart(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.getValue(BlockTallPlant.HALF);
|
|
|
|
if (blockpropertydoubleblockhalf == BlockPropertyDoubleBlockHalf.UPPER) {
|