Переглянути джерело

Display what the port buys/sells + port choices b/s.

Steve Thielemann 5 роки тому
батько
коміт
6fc5a0ab49
1 змінених файлів з 2 додано та 2 видалено
  1. 2 2
      flexible.py

+ 2 - 2
flexible.py

@@ -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(*_):