Fixup free space check

This commit is contained in:
RedSparr0w
2019-11-23 17:07:13 +13:00
parent 05a3a912f6
commit bda929229e
5 changed files with 2 additions and 2 deletions
@@ -139,7 +139,7 @@ public class BotHandler
} }
public static void takeCoins(Client player){ public static void takeCoins(Client player){
if (!player.getItemAssistant().playerHasItem(currency) || player.getItemAssistant().freeSlots() <= 0) { if (!player.getItemAssistant().playerHasItem(currency) && player.getItemAssistant().freeSlots() <= 0) {
player.getActionSender().sendMessage("You don't have enough space in your inventory."); player.getActionSender().sendMessage("You don't have enough space in your inventory.");
return; return;
} }