2015-02-26 11:40:16 +01:00
|
|
|
From 6e805f1310bdc9c60ae053b397f741c66abb40d4 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-02-06 11:08:31 +01:00
|
|
|
index 0457ede..3e0d808 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-02-06 11:08:31 +01:00
|
|
|
@@ -323,6 +323,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-02-06 11:08:31 +01:00
|
|
|
@@ -337,7 +342,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-02-06 11:08:31 +01:00
|
|
|
@@ -350,7 +364,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()) {
|
|
|
|
- if (this.isDamaged(i, entityliving.bb())) {
|
|
|
|
+ if (this.isDamaged(i, entityliving.bb(), entityliving)) { // Spigot
|
|
|
|
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
|
|
|
--
|
2014-11-28 02:17:45 +01:00
|
|
|
2.1.0
|
2014-07-21 22:46:54 +02:00
|
|
|
|