Fix PlayerItemDamageEvent
Hopefully a temporary patch as I've already submitted it to SpigotMC But I kinda wanna use the event now so... Here we are
This commit is contained in:
parent
7dd671146d
commit
a7f1e7efd5
1 changed files with 23 additions and 0 deletions
23
Spigot-Server-Patches/0031-Fix-PlayerItemDamageEvent.patch
Normal file
23
Spigot-Server-Patches/0031-Fix-PlayerItemDamageEvent.patch
Normal file
|
@ -0,0 +1,23 @@
|
|||
From b8f93f43ea39ca1be0f96207995bee00ead425eb Mon Sep 17 00:00:00 2001
|
||||
From: Zach Brown <Zbob750@live.com>
|
||||
Date: Thu, 24 Jul 2014 22:23:38 -0500
|
||||
Subject: [PATCH] Fix PlayerItemDamageEvent
|
||||
|
||||
Taken from SpigotMC/Spigot PR#202
|
||||
|
||||
diff --git a/src/main/java/net/minecraft/server/ItemStack.java b/src/main/java/net/minecraft/server/ItemStack.java
|
||||
index 2723ccb..569b2e3 100644
|
||||
--- a/src/main/java/net/minecraft/server/ItemStack.java
|
||||
+++ b/src/main/java/net/minecraft/server/ItemStack.java
|
||||
@@ -328,7 +328,7 @@ public final class ItemStack {
|
||||
public void damage(int i, EntityLiving entityliving) {
|
||||
if (!(entityliving instanceof EntityHuman) || !((EntityHuman) entityliving).abilities.canInstantlyBuild) {
|
||||
if (this.g()) {
|
||||
- if (this.isDamaged(i, entityliving.aI())) {
|
||||
+ if (this.isDamaged(i, entityliving.aI(), entityliving)) {
|
||||
entityliving.a(this);
|
||||
--this.count;
|
||||
if (entityliving instanceof EntityHuman) {
|
||||
--
|
||||
1.9.1
|
||||
|
Loading…
Reference in a new issue