summaryrefslogtreecommitdiffstats
path: root/nms-patches/ItemBoat.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nms-patches/ItemBoat.patch')
-rw-r--r--nms-patches/ItemBoat.patch9
1 files changed, 9 insertions, 0 deletions
diff --git a/nms-patches/ItemBoat.patch b/nms-patches/ItemBoat.patch
index abcb54aa..e25ef73f 100644
--- a/nms-patches/ItemBoat.patch
+++ b/nms-patches/ItemBoat.patch
@@ -14,3 +14,12 @@
Block block = world.getType(movingobjectposition.a()).getBlock();
boolean flag1 = block == Blocks.WATER || block == Blocks.FLOWING_WATER;
EntityBoat entityboat = new EntityBoat(world, movingobjectposition.pos.x, flag1 ? movingobjectposition.pos.y - 0.12D : movingobjectposition.pos.y, movingobjectposition.pos.z);
+@@ -66,7 +73,7 @@
+ return new InteractionResultWrapper(EnumInteractionResult.FAIL, itemstack);
+ } else {
+ if (!world.isClientSide) {
+- world.addEntity(entityboat);
++ if (!world.addEntity(entityboat)) return new InteractionResultWrapper(EnumInteractionResult.PASS, itemstack); // CraftBukkit
+ }
+
+ if (!entityhuman.abilities.canInstantlyBuild) {