Update to Minecraft 1.8
For more information please see http://www.spigotmc.org/ By: Thinkofdeath <thinkofdeath@spigotmc.org>
This commit is contained in:
17
paper-server/nms-patches/ItemBoat.patch
Normal file
17
paper-server/nms-patches/ItemBoat.patch
Normal file
@@ -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();
|
||||
Reference in New Issue
Block a user