mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 18:31:29 +01:00
17 lines
1.2 KiB
Diff
17 lines
1.2 KiB
Diff
--- a/net/minecraft/server/ItemBoat.java
|
|
+++ b/net/minecraft/server/ItemBoat.java
|
|
@@ -56,6 +56,13 @@
|
|
} else if (movingobjectposition.type != MovingObjectPosition.EnumMovingObjectType.BLOCK) {
|
|
return new InteractionResultWrapper(EnumInteractionResult.PASS, itemstack);
|
|
} else {
|
|
+ // 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, movingobjectposition.a(), movingobjectposition.direction, itemstack, enumhand);
|
|
+
|
|
+ if (event.isCancelled()) {
|
|
+ return new InteractionResultWrapper(EnumInteractionResult.PASS, itemstack);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
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);
|