mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-13 19:25:49 -07:00
Fire PlayerItemBreakEvent. Addresses BUKKIT-1600
This commit is contained in:
committed by
Travis Watkins
parent
8bc42ba8c9
commit
9f37f70527
@@ -179,6 +179,12 @@ public final class ItemStack {
|
||||
this.count = 0;
|
||||
}
|
||||
|
||||
// CraftBukkit start - Check for item breaking
|
||||
if (this.count == 0 && entityliving instanceof EntityHuman) {
|
||||
org.bukkit.craftbukkit.event.CraftEventFactory.callPlayerItemBreakEvent((EntityHuman) entityliving, this);
|
||||
}
|
||||
// CraftBukkit end
|
||||
|
||||
this.damage = 0;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user