mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
19972e09b8
5a0150f586ed3eb15fe6f1f596d1a5a7d806f0f9 Fix ITEM_BREAK e6a3911057bd94d8bd7021cbb4923fb84fb106d1 Upstream merge d1cdcf8d4c3639f956474f02ed662517cffbe23e Remove old patch 068df64aeee368377e1673667bffc7a6dcf90554 Rebuild all patches
25 lines
1.1 KiB
Diff
25 lines
1.1 KiB
Diff
From c4d1d49d376f4b935dad6b931e196f07ecebec88 Mon Sep 17 00:00:00 2001
|
|
From: md_5 <md_5@live.com.au>
|
|
Date: Sat, 14 Sep 2013 10:16:38 +1000
|
|
Subject: [PATCH] Update Inventory and Health for PlayerConsumeItemEvent
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityHuman.java b/src/main/java/net/minecraft/server/EntityHuman.java
|
|
index 87356e4..d8adce0 100644
|
|
--- a/src/main/java/net/minecraft/server/EntityHuman.java
|
|
+++ b/src/main/java/net/minecraft/server/EntityHuman.java
|
|
@@ -298,6 +298,10 @@ public abstract class EntityHuman extends EntityLiving {
|
|
// Update client
|
|
if (this instanceof EntityPlayer) {
|
|
((EntityPlayer) this).playerConnection.sendPacket(new PacketPlayOutSetSlot((byte) 0, activeContainer.getSlot((IInventory) this.inventory, this.inventory.itemInHandIndex).index, this.g));
|
|
+ // Spigot Start
|
|
+ ((EntityPlayer) this).getBukkitEntity().updateInventory();
|
|
+ ((EntityPlayer) this).getBukkitEntity().updateScaledHealth();
|
|
+ // Spigot End
|
|
}
|
|
return;
|
|
}
|
|
--
|
|
2.1.0
|
|
|