aboutsummaryrefslogtreecommitdiffhomepage
path: root/patch-remap/og/net/minecraft/world/level/block/BlockWaterLily.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patch-remap/og/net/minecraft/world/level/block/BlockWaterLily.patch')
-rw-r--r--patch-remap/og/net/minecraft/world/level/block/BlockWaterLily.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/patch-remap/og/net/minecraft/world/level/block/BlockWaterLily.patch b/patch-remap/og/net/minecraft/world/level/block/BlockWaterLily.patch
new file mode 100644
index 0000000000..d453a0b8d6
--- /dev/null
+++ b/patch-remap/og/net/minecraft/world/level/block/BlockWaterLily.patch
@@ -0,0 +1,25 @@
+--- a/net/minecraft/world/level/block/BlockWaterLily.java
++++ b/net/minecraft/world/level/block/BlockWaterLily.java
+@@ -14,6 +14,10 @@
+ import net.minecraft.world.phys.shapes.VoxelShape;
+ import net.minecraft.world.phys.shapes.VoxelShapeCollision;
+
++// CraftBukkit start
++import org.bukkit.craftbukkit.event.CraftEventFactory;
++// CraftBukkit end
++
+ public class BlockWaterLily extends BlockPlant {
+
+ public static final MapCodec<BlockWaterLily> CODEC = simpleCodec(BlockWaterLily::new);
+@@ -32,6 +36,11 @@
+ public void entityInside(IBlockData iblockdata, World world, BlockPosition blockposition, Entity entity) {
+ super.entityInside(iblockdata, world, blockposition, entity);
+ if (world instanceof WorldServer && entity instanceof EntityBoat) {
++ // CraftBukkit start
++ if (!CraftEventFactory.callEntityChangeBlockEvent(entity, blockposition, Blocks.AIR.defaultBlockState())) {
++ return;
++ }
++ // CraftBukkit end
+ world.destroyBlock(new BlockPosition(blockposition), true, entity);
+ }
+