|
@@ -290,10 +290,9 @@ class TWGSServer(protocol.Protocol):
|
|
|
+ b" is active. \x1b[1;34m~\x1b[0m to activate.\n\r\n\r",
|
|
|
)
|
|
|
)
|
|
|
- if "TradeWars Game Server" in line:
|
|
|
- if "Copyright (C) EIS" in line:
|
|
|
- # We are not in a game
|
|
|
- self.game = ""
|
|
|
+ if "TradeWars Game Server" in line and "Copyright (C) EIS" in line:
|
|
|
+ # We are not in a game
|
|
|
+ self.game = ""
|
|
|
if "Selection (? for menu): " in line:
|
|
|
game = line[-1]
|
|
|
if game >= "A" and game < "Q":
|