mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 12:02:36 +01:00
43702a9e10
By: md_5 <git@md-5.net>
11 lines
742 B
Diff
11 lines
742 B
Diff
--- a/net/minecraft/world/level/block/BlockWaterLily.java
|
|
+++ b/net/minecraft/world/level/block/BlockWaterLily.java
|
|
@@ -25,7 +25,7 @@
|
|
@Override
|
|
public void entityInside(IBlockData iblockdata, World world, BlockPosition blockposition, Entity entity) {
|
|
super.entityInside(iblockdata, world, blockposition, entity);
|
|
- if (world instanceof WorldServer && entity instanceof EntityBoat) {
|
|
+ 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);
|
|
}
|
|
|