2021-03-15 23:00:00 +01:00
|
|
|
--- a/net/minecraft/world/level/block/BlockWaterLily.java
|
|
|
|
+++ b/net/minecraft/world/level/block/BlockWaterLily.java
|
2023-12-05 17:40:00 +01:00
|
|
|
@@ -14,6 +14,10 @@
|
2023-06-24 09:15:05 +02:00
|
|
|
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 {
|
|
|
|
|
2023-12-05 17:40:00 +01:00
|
|
|
public static final MapCodec<BlockWaterLily> CODEC = simpleCodec(BlockWaterLily::new);
|
|
|
|
@@ -32,6 +36,11 @@
|
2021-11-21 23:00:00 +01:00
|
|
|
public void entityInside(IBlockData iblockdata, World world, BlockPosition blockposition, Entity entity) {
|
|
|
|
super.entityInside(iblockdata, world, blockposition, entity);
|
2023-06-24 09:15:05 +02:00
|
|
|
if (world instanceof WorldServer && entity instanceof EntityBoat) {
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ if (!CraftEventFactory.callEntityChangeBlockEvent(entity, blockposition, Blocks.AIR.defaultBlockState())) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2021-11-21 23:00:00 +01:00
|
|
|
world.destroyBlock(new BlockPosition(blockposition), true, entity);
|
2016-03-06 03:05:59 +01:00
|
|
|
}
|
2016-03-06 11:42:34 +01:00
|
|
|
|