Fixed buying from shops

This commit is contained in:
Acrobot 2012-04-19 15:52:31 +02:00
parent 5da5773879
commit e2305225d3
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}