|
@@ -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())
|
|
|
|
|
|
|