yup that happened

This commit is contained in:
Mohamad Alkotob
2017-01-04 19:24:20 +02:00
committed by GitHub
parent 7936a223f5
commit 988e94f62f

View File

@@ -1,7 +1,6 @@
package com.gpl.rpg.AndorsTrail.model.item;
import android.content.ClipData;
import com.gpl.rpg.AndorsTrail.context.WorldContext;
import com.gpl.rpg.AndorsTrail.model.actor.Player;
import com.gpl.rpg.AndorsTrail.savegames.LegacySavegameFormatReaderForItemContainer;
@@ -53,7 +52,7 @@ public final class Inventory extends ItemContainer {
this.gold += loot.gold;
this.add(loot.items);
}
public boolean isEmptySlot(WearSlot slot) {
return wear[slot.ordinal()] == null;
}