2015-07-27 14:20:54 +02:00
|
|
|
From 927b1e1f6463fc52c8718735deb38f5b315c7260 Mon Sep 17 00:00:00 2001
|
2014-07-21 22:46:54 +02:00
|
|
|
From: md_5 <md_5@live.com.au>
|
|
|
|
Date: Mon, 4 Mar 2013 18:45:52 +1100
|
|
|
|
Subject: [PATCH] PlayerItemDamageEvent
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/ItemStack.java b/src/main/java/net/minecraft/server/ItemStack.java
|
2015-07-10 14:33:16 +02:00
|
|
|
index 2821afa..b722be5 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/ItemStack.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ItemStack.java
|
2015-07-10 14:33:16 +02:00
|
|
|
@@ -339,6 +339,11 @@ public final class ItemStack {
|
2014-07-21 22:46:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isDamaged(int i, Random random) {
|
|
|
|
+ return isDamaged(i, random, null);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public boolean isDamaged(int i, Random random, EntityLiving entityliving) {
|
|
|
|
+ // Spigot end
|
2014-11-28 02:17:45 +01:00
|
|
|
if (!this.e()) {
|
2014-07-21 22:46:54 +02:00
|
|
|
return false;
|
|
|
|
} else {
|
2015-07-10 14:33:16 +02:00
|
|
|
@@ -353,7 +358,16 @@ public final class ItemStack {
|
2014-07-21 22:46:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
i -= k;
|
|
|
|
- if (i <= 0) {
|
|
|
|
+ // Spigot start
|
|
|
|
+ if (entityliving instanceof EntityPlayer) {
|
|
|
|
+ org.bukkit.craftbukkit.inventory.CraftItemStack item = org.bukkit.craftbukkit.inventory.CraftItemStack.asCraftMirror(this);
|
|
|
|
+ org.bukkit.event.player.PlayerItemDamageEvent event = new org.bukkit.event.player.PlayerItemDamageEvent((org.bukkit.entity.Player) entityliving.getBukkitEntity(), item, i);
|
|
|
|
+ org.bukkit.Bukkit.getServer().getPluginManager().callEvent(event);
|
|
|
|
+ if (event.isCancelled()) return false;
|
|
|
|
+ i = event.getDamage();
|
|
|
|
+ }
|
|
|
|
+ // Spigot end
|
|
|
|
+ if (i <= 0 ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2015-07-10 14:33:16 +02:00
|
|
|
@@ -366,7 +380,7 @@ public final class ItemStack {
|
2014-07-27 21:14:24 +02:00
|
|
|
public void damage(int i, EntityLiving entityliving) {
|
|
|
|
if (!(entityliving instanceof EntityHuman) || !((EntityHuman) entityliving).abilities.canInstantlyBuild) {
|
2014-11-28 02:17:45 +01:00
|
|
|
if (this.e()) {
|
2015-02-28 12:36:22 +01:00
|
|
|
- if (this.isDamaged(i, entityliving.bc())) {
|
|
|
|
+ if (this.isDamaged(i, entityliving.bc(), entityliving)) { // Spigot
|
2014-11-28 02:17:45 +01:00
|
|
|
entityliving.b(this);
|
2014-07-27 21:14:24 +02:00
|
|
|
--this.count;
|
|
|
|
if (entityliving instanceof EntityHuman) {
|
2014-07-21 22:46:54 +02:00
|
|
|
--
|
2015-05-09 22:23:26 +02:00
|
|
|
2.1.4
|
2014-07-21 22:46:54 +02:00
|
|
|
|