From f849f871d2dfc00cda93ddc6ca7c002832cb6afc Mon Sep 17 00:00:00 2001 From: Richard Bronkhorst Date: Sun, 18 Jun 2023 20:21:08 +0200 Subject: [PATCH] Update mission.py --- nullptr/mission.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nullptr/mission.py b/nullptr/mission.py index b4ff69a..9574ab2 100644 --- a/nullptr/mission.py +++ b/nullptr/mission.py @@ -188,7 +188,7 @@ class MiningMission(Mission): def step_sell(self, except_resource=True): target = self.st('resource') - market = self.store.get('Marketplace', self.ship.location()) + market = self.store.get('Marketplace', self.ship.location_str) sellables = market.sellable_items(self.ship.cargo.keys()) if target in sellables and except_resource: sellables.remove(target)