|
@@ -432,9 +432,9 @@ class ScriptPort(object):
|
|
|
log.msg("Ok, state 4")
|
|
|
if self.sector2 is None:
|
|
|
# Ok, we need to prompt for this.
|
|
|
- self.queue_game.put(self.r + self.nl + "Which sector to trade with?" + self.nl + Fore.CYAN)
|
|
|
+ self.queue_game.put(self.r + self.nl + "Which sector to trade with? {0} ({1})".format(self.this_sector, self.game.portdata[self.this_sector]['port']) + self.nl + Fore.CYAN)
|
|
|
for i, p in enumerate(self.possible):
|
|
|
- self.queue_game.put(" " + str(i + 1) + " : " + str(p) + self.nl)
|
|
|
+ self.queue_game.put(" " + str(i + 1) + " : " + str(p) + " (" + self.game.portdata[p]['port'] + ")" + self.nl)
|
|
|
|
|
|
pi = PlayerInput(self.game)
|
|
|
def got_need1(*_):
|