From 5122dcd61e680d6587efcfc94917367d17a905f8 Mon Sep 17 00:00:00 2001 From: md_5 Date: Tue, 1 Mar 2016 20:07:44 +1100 Subject: SPIGOT-1568: Fix jukeboxes --- nms-patches/ItemStack.patch | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'nms-patches/ItemStack.patch') diff --git a/nms-patches/ItemStack.patch b/nms-patches/ItemStack.patch index 7750c2d3..fe0ae0c3 100644 --- a/nms-patches/ItemStack.patch +++ b/nms-patches/ItemStack.patch @@ -39,7 +39,7 @@ } -@@ -84,11 +101,128 @@ +@@ -84,11 +101,129 @@ } public EnumInteractionResult placeItem(EntityHuman entityhuman, World world, BlockPosition blockposition, EnumHand enumhand, EnumDirection enumdirection, float f, float f1, float f2) { @@ -136,11 +136,12 @@ + } + + // Special case juke boxes as they update their tile entity. Copied from ItemRecord. ++ // PAIL: checkme on updates. + if (this.getItem() instanceof ItemRecord) { + ((BlockJukeBox) Blocks.JUKEBOX).a(world, blockposition, world.getType(blockposition), this); -+ world.a((EntityHuman) null, 1005, blockposition, Item.getId(this.getItem())); ++ world.a((EntityHuman) null, 1010, blockposition, Item.getId(this.item)); + --this.count; -+ entityhuman.b(StatisticList.X); ++ entityhuman.b(StatisticList.Z); + } + + if (this.getItem() == Items.SKULL) { // Special case skulls to allow wither spawns to be cancelled @@ -169,7 +170,7 @@ return enuminteractionresult; } -@@ -112,7 +246,7 @@ +@@ -112,7 +247,7 @@ nbttagcompound.setByte("Count", (byte) this.count); nbttagcompound.setShort("Damage", (short) this.damage); if (this.tag != null) { @@ -178,7 +179,7 @@ } return nbttagcompound; -@@ -121,13 +255,18 @@ +@@ -121,13 +256,18 @@ public void c(NBTTagCompound nbttagcompound) { this.item = Item.d(nbttagcompound.getString("id")); this.count = nbttagcompound.getByte("Count"); @@ -198,7 +199,7 @@ if (this.item != null) { this.item.a(this.tag); } -@@ -164,6 +303,26 @@ +@@ -164,6 +304,26 @@ } public void setData(int i) { @@ -225,7 +226,7 @@ this.damage = i; if (this.damage < 0) { this.damage = 0; -@@ -216,6 +375,12 @@ +@@ -216,6 +376,12 @@ this.count = 0; } @@ -238,7 +239,7 @@ this.damage = 0; } -@@ -513,6 +678,7 @@ +@@ -513,6 +679,7 @@ public void setItem(Item item) { this.item = item; -- cgit v1.2.3