Explorar o código

Added blinking active.

bugz %!s(int64=5) %!d(string=hai) anos
pai
achega
6d7e48e19c
Modificáronse 1 ficheiros con 5 adicións e 2 borrados
  1. 5 2
      flexible.py

+ 5 - 2
flexible.py

@@ -13,6 +13,7 @@ from galaxy import GameData, PORT_CLASSES, CLASSES_PORT
 from boxes import Boxes
 import logging
 
+BLINK = '\x1b[5m'
 log = logging.getLogger(__name__)
 
 class SpinningCursor(object):
@@ -1987,6 +1988,7 @@ class PlanetUpScript(object):
                 # There are either no obvious planets to upgrade, 
                 # or there are multiple planet choices.
 
+                self.queue_game.put()
                 pass
 
             self.queue_game.put(Boxes.alert("Choices: {0}".format(obvious)))
@@ -2129,8 +2131,9 @@ class ProxyMenu(object):
         box = Boxes(30, color=self.c)
 
         self.queue_game.put(box.top())
-        self.queue_game.put(
-            box.row(self.c + "{0:^30}".format("TradeWars Proxy Active")))
+        text = self.c + "{0:^30}".format("TradeWars Proxy Active")
+        text = text.replace('Active', BLINK + 'Active') + Style.RESET_ALL
+        self.queue_game.put(box.row(text))
         self.queue_game.put(box.middle())