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.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/nms-patches/ItemBoat.patch b/nms-patches/ItemBoat.patch
new file mode 100644
index 00000000..29142514
--- /dev/null
+++ b/nms-patches/ItemBoat.patch
@@ -0,0 +1,17 @@
+--- ../work/decompile-bb26c12b/net/minecraft/server/ItemBoat.java 2014-11-27 08:59:46.773421530 +1100
++++ src/main/java/net/minecraft/server/ItemBoat.java 2014-11-27 08:42:10.156850903 +1100
+@@ -53,6 +53,14 @@
+ } else {
+ if (movingobjectposition.type == EnumMovingObjectType.BLOCK) {
+ BlockPosition blockposition = movingobjectposition.a();
++
++ // CraftBukkit start - Boat placement
++ org.bukkit.event.player.PlayerInteractEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callPlayerInteractEvent(entityhuman, org.bukkit.event.block.Action.RIGHT_CLICK_BLOCK, blockposition, movingobjectposition.direction, itemstack);
++
++ if (event.isCancelled()) {
++ return itemstack;
++ }
++ // CraftBukkit end
+
+ if (world.getType(blockposition).getBlock() == Blocks.SNOW_LAYER) {
+ blockposition = blockposition.down();