From cb61ac0404a52ba8c3f6ab8d92304aeeb6250846 Mon Sep 17 00:00:00 2001 From: md_5 Date: Tue, 21 Feb 2017 20:47:40 +1100 Subject: MC-111753, SPIGOT-2971: Brewing stand not reloading --- nms-patches/TileEntityBrewingStand.patch | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/nms-patches/TileEntityBrewingStand.patch b/nms-patches/TileEntityBrewingStand.patch index 1cb11da0..fa5a2ab8 100644 --- a/nms-patches/TileEntityBrewingStand.patch +++ b/nms-patches/TileEntityBrewingStand.patch @@ -112,3 +112,12 @@ } public boolean a(EntityHuman entityhuman) { +@@ -227,7 +286,7 @@ + } else { + Item item = itemstack.getItem(); + +- return i == 4 ? item == Items.BLAZE_POWDER : (item == Items.POTION || item == Items.SPLASH_POTION || item == Items.LINGERING_POTION || item == Items.GLASS_BOTTLE) && this.getItem(i) == ItemStack.a; ++ return i == 4 ? item == Items.BLAZE_POWDER : (item == Items.POTION || item == Items.SPLASH_POTION || item == Items.LINGERING_POTION || item == Items.GLASS_BOTTLE) && this.getItem(i).isEmpty(); // CraftBukkit - MC-111753 + } + } + -- cgit v1.2.3