practicing with a shop buyer. Looking to hop worlds if store doesnt contain items.
i.e
final String items[] = new String[] {"Small fishing net", "Harpoon", "Lobster Pot", };
private State getState() {
if (!inventory.isFull())
return State.BUY;
if (inventory.isFull())
return State.BANK;
if (!store.contains(items))
return State.HOP;
return State.WAIT;
}