Sfoglia il codice sorgente

Now checking to see if we have a trade_report to display on D at proxy menu

david 5 anni fa
parent
commit
011c26395d
1 ha cambiato i file con 9 aggiunte e 4 eliminazioni
  1. 9 4
      flexible.py

+ 9 - 4
flexible.py

@@ -1134,7 +1134,7 @@ class ProxyMenu(object):
 
         if key == "T":
             self.queue_game.put(self.c + key + self.r + self.nl)
-
+            # Trade Report
             # do we have enough information to do this?
 
             if not hasattr(self.game, 'portdata') and not hasattr(self.game, 'warpdata'):
@@ -1159,7 +1159,7 @@ class ProxyMenu(object):
             return
         elif key == "W":
             self.queue_game.put(self.c + key + self.r + self.nl)
-            # Activate CIM Port Report
+            # Activate CIM Warp Report
             report = CIMWarpReport(self.game)
             d = report.whenDone()
             d.addCallback(self.warp_report)
@@ -1167,12 +1167,17 @@ class ProxyMenu(object):
             return
         elif key == "S":
             self.queue_game.put(self.c + key + self.r + self.nl)
+            # Scripts
             self.activate_scripts_menu()
             return
         elif key == "D":
             self.queue_game.put(self.c + key + self.r + self.nl)
-            for t in self.trade_report:
-                self.queue_game.put(t + self.nl)
+            # (Re) Display Trade Report
+            if self.trade_report:
+                for t in self.trade_report:
+                    self.queue_game.put(t + self.nl)
+            else:
+                self.queue_game.put("Missing trade_report." + self.nl)
             # self.queue_game.put(pformat(self.portdata).replace("\n", "\n\r") + self.nl)
             # self.queue_game.put(pformat(self.warpdata).replace("\n", "\n\r") + self.nl)    
         elif key == "Q":