diff --git a/bin/net/grosinger/nomads/DroneListItem.class b/bin/net/grosinger/nomads/DroneListItem.class index 6e1b8dd..f1c22c2 100644 Binary files a/bin/net/grosinger/nomads/DroneListItem.class and b/bin/net/grosinger/nomads/DroneListItem.class differ diff --git a/src/net/grosinger/nomads/DroneListItem.java b/src/net/grosinger/nomads/DroneListItem.java index bb09600..8d5f758 100644 --- a/src/net/grosinger/nomads/DroneListItem.java +++ b/src/net/grosinger/nomads/DroneListItem.java @@ -381,8 +381,11 @@ public class DroneListItem { GameObject objectHere = Nomads.awesomeWorld.getObjectAt(getX() + amountE, getY() + amountN); if (inventory.size() < cargoSpace) { - if (objectHere instanceof MoneyPile || objectHere instanceof Objective) { + if (objectHere instanceof MoneyPile) { inventory.add(objectHere); + } else if (objectHere instanceof Objective) { + // TODO - Check to see that this drone is the owner of that + // Objective } } else { // TODO - Inventory is full, do not allow move