summaryrefslogtreecommitdiffstats
path: root/nms-patches/ItemBoat.patch
blob: 29142514bc4b5d46cbe1f93361a873a96f515e86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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();