mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 11:44:19 +01:00
43702a9e10
By: md_5 <git@md-5.net>
33 lines
2 KiB
Diff
33 lines
2 KiB
Diff
--- a/net/minecraft/world/item/ItemBoat.java
|
|
+++ b/net/minecraft/world/item/ItemBoat.java
|
|
@@ -56,6 +56,13 @@
|
|
}
|
|
|
|
if (movingobjectpositionblock.getType() == MovingObjectPosition.EnumMovingObjectType.BLOCK) {
|
|
+ // 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, movingobjectpositionblock.getBlockPos(), movingobjectpositionblock.getDirection(), itemstack, enumhand);
|
|
+
|
|
+ if (event.isCancelled()) {
|
|
+ return InteractionResultWrapper.pass(itemstack);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
EntityBoat entityboat = new EntityBoat(world, movingobjectpositionblock.getLocation().x, movingobjectpositionblock.getLocation().y, movingobjectpositionblock.getLocation().z);
|
|
|
|
entityboat.setType(this.type);
|
|
@@ -64,7 +71,15 @@
|
|
return InteractionResultWrapper.fail(itemstack);
|
|
} else {
|
|
if (!world.isClientSide) {
|
|
- world.addFreshEntity(entityboat);
|
|
+ // CraftBukkit start
|
|
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.callEntityPlaceEvent(world, movingobjectpositionblock.getBlockPos(), movingobjectpositionblock.getDirection(), entityhuman, entityboat).isCancelled()) {
|
|
+ return InteractionResultWrapper.fail(itemstack);
|
|
+ }
|
|
+
|
|
+ if (!world.addFreshEntity(entityboat)) {
|
|
+ return InteractionResultWrapper.pass(itemstack);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
world.gameEvent(entityhuman, GameEvent.ENTITY_PLACE, new BlockPosition(movingobjectpositionblock.getLocation()));
|
|
if (!entityhuman.getAbilities().instabuild) {
|
|
itemstack.shrink(1);
|