2021-03-15 23:00:00 +01:00
|
|
|
--- a/net/minecraft/world/level/block/BlockWaterLily.java
|
|
|
|
+++ b/net/minecraft/world/level/block/BlockWaterLily.java
|
|
|
|
@@ -25,7 +25,7 @@
|
2019-04-23 04:00:00 +02:00
|
|
|
@Override
|
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);
|
2019-12-10 23:00:00 +01:00
|
|
|
- if (world instanceof WorldServer && entity instanceof EntityBoat) {
|
2021-11-21 23:00:00 +01:00
|
|
|
+ if (world instanceof WorldServer && entity instanceof EntityBoat && !org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(entity, blockposition, Blocks.AIR.defaultBlockState()).isCancelled()) { // CraftBukkit
|
|
|
|
world.destroyBlock(new BlockPosition(blockposition), true, entity);
|
2016-03-06 03:05:59 +01:00
|
|
|
}
|
2016-03-06 11:42:34 +01:00
|
|
|
|