From e2305225d360b205803ef0ee840d97c02cc11502 Mon Sep 17 00:00:00 2001 From: Acrobot Date: Thu, 19 Apr 2012 15:52:31 +0200 Subject: [PATCH] Fixed buying from shops --- com/Acrobot/ChestShop/Shop/ShopManagement.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com/Acrobot/ChestShop/Shop/ShopManagement.java b/com/Acrobot/ChestShop/Shop/ShopManagement.java index fc73266..f28a1b1 100644 --- a/com/Acrobot/ChestShop/Shop/ShopManagement.java +++ b/com/Acrobot/ChestShop/Shop/ShopManagement.java @@ -36,6 +36,6 @@ public class ShopManagement { player.sendMessage(ChatColor.RED + "[Shop] The item is not recognised!"); return null; } - return new Shop(chestMc != null ? new MinecraftChest(chestMc) : null, false, sign, item); + return new Shop(chestMc != null ? new MinecraftChest(chestMc) : null, sign, item); } }