|
@@ -1011,8 +1011,12 @@ class ProxyMenu(object):
|
|
if key == "T":
|
|
if key == "T":
|
|
self.queue_game.put(self.c + key + self.r + self.nl)
|
|
self.queue_game.put(self.c + key + self.r + self.nl)
|
|
|
|
|
|
- if not hasattr(self.game, 'portdata') or not hasattr(self.game, 'warpdata'):
|
|
|
|
- self.queue_game.put("Missing portdata/warpdata." + self.nl)
|
|
|
|
|
|
+ if not hasattr(self.game, 'portdata') and not hasattr(self.game, 'warpdata'):
|
|
|
|
+ self.queue_game.put("Missing portdata and warpdata." + self.nl)
|
|
|
|
+ elif not hasattr(self.game, 'portdata'):
|
|
|
|
+ self.queue_game.put("Missing portdata." + self.nl)
|
|
|
|
+ elif not hasattr(self.game, 'warpdata'):
|
|
|
|
+ self.queue_game.put("Missing warpdata." + self.nl)
|
|
else:
|
|
else:
|
|
# Ok, for each port
|
|
# Ok, for each port
|
|
ok_trades = []
|
|
ok_trades = []
|
|
@@ -1027,7 +1031,7 @@ class ProxyMenu(object):
|
|
# Ok, let's look into it.
|
|
# Ok, let's look into it.
|
|
if not sector in self.game.warpdata:
|
|
if not sector in self.game.warpdata:
|
|
continue
|
|
continue
|
|
-
|
|
|
|
|
|
+
|
|
warps = self.game.warpdata[sector]
|
|
warps = self.game.warpdata[sector]
|
|
for w in warps:
|
|
for w in warps:
|
|
# Verify that we have that warp's info, and that the sector is in it.
|
|
# Verify that we have that warp's info, and that the sector is in it.
|