mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 10:17:38 +01:00
536256d6ff
By: md_5 <git@md-5.net>
38 lines
1.7 KiB
Diff
38 lines
1.7 KiB
Diff
--- a/net/minecraft/world/item/ItemLeash.java
|
|
+++ b/net/minecraft/world/item/ItemLeash.java
|
|
@@ -14,6 +14,8 @@
|
|
import net.minecraft.world.level.block.state.IBlockData;
|
|
import net.minecraft.world.phys.AxisAlignedBB;
|
|
|
|
+import org.bukkit.event.hanging.HangingPlaceEvent; // CraftBukkit
|
|
+
|
|
public class ItemLeash extends Item {
|
|
|
|
public ItemLeash(Item.Info item_info) {
|
|
@@ -55,9 +57,25 @@
|
|
if (entityinsentient.getLeashHolder() == entityhuman) {
|
|
if (entityleash == null) {
|
|
entityleash = EntityLeash.b(world, blockposition);
|
|
+
|
|
+ // CraftBukkit start - fire HangingPlaceEvent
|
|
+ HangingPlaceEvent event = new HangingPlaceEvent((org.bukkit.entity.Hanging) entityleash.getBukkitEntity(), entityhuman != null ? (org.bukkit.entity.Player) entityhuman.getBukkitEntity() : null, world.getWorld().getBlockAt(i, j, k), org.bukkit.block.BlockFace.SELF);
|
|
+ world.getCraftServer().getPluginManager().callEvent(event);
|
|
+
|
|
+ if (event.isCancelled()) {
|
|
+ entityleash.die();
|
|
+ return EnumInteractionResult.PASS;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
entityleash.playPlaceSound();
|
|
}
|
|
|
|
+ // CraftBukkit start
|
|
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.callPlayerLeashEntityEvent(entityinsentient, entityleash, entityhuman).isCancelled()) {
|
|
+ continue;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
entityinsentient.setLeashHolder(entityleash, true);
|
|
flag = true;
|
|
}
|