2013-06-21 08:49:33 +02:00
|
|
|
From f52dba2bbbe1ac2d868fc37d95d8a33e4e17a46e Mon Sep 17 00:00:00 2001
|
2013-03-04 08:49:59 +01: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
|
2013-05-04 01:24:15 +02:00
|
|
|
index 343b8cb..9c2fce6 100644
|
2013-03-04 08:49:59 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/ItemStack.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ItemStack.java
|
2013-03-20 22:54:12 +01:00
|
|
|
@@ -178,7 +178,13 @@ public final class ItemStack {
|
2013-03-15 23:08:53 +01:00
|
|
|
return Item.byId[this.id].getMaxDurability();
|
|
|
|
}
|
|
|
|
|
2013-03-16 01:57:39 +01:00
|
|
|
+ // Spigot start
|
|
|
|
public boolean isDamaged(int i, Random random) {
|
|
|
|
+ return isDamaged(i, random, null);
|
|
|
|
+ }
|
|
|
|
+
|
2013-03-15 23:08:53 +01:00
|
|
|
+ public boolean isDamaged(int i, Random random, EntityLiving entityliving) {
|
2013-03-16 01:57:39 +01:00
|
|
|
+ // Spigot end
|
2013-03-15 23:08:53 +01:00
|
|
|
if (!this.g()) {
|
|
|
|
return false;
|
|
|
|
} else {
|
2013-03-20 22:54:12 +01:00
|
|
|
@@ -193,7 +199,16 @@ public final class ItemStack {
|
2013-03-04 08:49:59 +01: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);
|
2013-03-04 21:22:03 +01:00
|
|
|
+ org.bukkit.event.player.PlayerItemDamageEvent event = new org.bukkit.event.player.PlayerItemDamageEvent((org.bukkit.entity.Player) entityliving.getBukkitEntity(), item, i);
|
2013-03-04 08:49:59 +01:00
|
|
|
+ org.bukkit.Bukkit.getServer().getPluginManager().callEvent(event);
|
2013-03-15 23:08:53 +01:00
|
|
|
+ if (event.isCancelled()) return false;
|
2013-03-04 08:49:59 +01:00
|
|
|
+ i = event.getDamage();
|
|
|
|
+ }
|
|
|
|
+ // Spigot end
|
|
|
|
+ if (i <= 0 ) {
|
2013-03-15 22:35:56 +01:00
|
|
|
return false;
|
2013-03-04 08:49:59 +01:00
|
|
|
}
|
|
|
|
}
|
2013-03-20 22:54:12 +01:00
|
|
|
@@ -206,7 +221,7 @@ public final class ItemStack {
|
2013-03-15 23:08:53 +01:00
|
|
|
public void damage(int i, EntityLiving entityliving) {
|
|
|
|
if (!(entityliving instanceof EntityHuman) || !((EntityHuman) entityliving).abilities.canInstantlyBuild) {
|
|
|
|
if (this.g()) {
|
|
|
|
- if (this.isDamaged(i, entityliving.aE())) {
|
|
|
|
+ if (this.isDamaged(i, entityliving.aE(), entityliving)) {
|
|
|
|
entityliving.a(this);
|
|
|
|
if (entityliving instanceof EntityHuman) {
|
|
|
|
((EntityHuman) entityliving).a(StatisticList.F[this.id], 1);
|
2013-03-04 08:49:59 +01:00
|
|
|
--
|
2013-06-02 07:15:15 +02:00
|
|
|
1.8.1.2
|
2013-03-04 08:49:59 +01:00
|
|
|
|