瀏覽代碼

Minor changes in config file.

Variables/classes are named completely wrong.  Fixing now.
Steve Thielemann 5 年之前
父節點
當前提交
3d4ce3581d
共有 4 個文件被更改,包括 8 次插入6 次删除
  1. 2 1
      config.py
  2. 2 1
      config_dev.py
  3. 1 0
      proxy-image/Dockerfile
  4. 3 4
      tcp-proxy.py

+ 2 - 1
config.py

@@ -1,4 +1,3 @@
-
 # Connect to:
 HOST = "twgs"
 PORT = 2002
@@ -6,3 +5,5 @@ PORT = 2002
 LISTEN_PORT = 2002
 LISTEN_ON = "0.0.0.0"
 
+# Yes, save .raw files
+RAW = True

+ 2 - 1
config_dev.py

@@ -1,4 +1,3 @@
-
 # Connect to:
 HOST = "127.0.0.1"
 PORT = 2002
@@ -6,3 +5,5 @@ PORT = 2002
 LISTEN_PORT = 9999
 LISTEN_ON = "127.0.0.1"
 
+# Yes, save .raw files
+RAW = True

+ 1 - 0
proxy-image/Dockerfile

@@ -5,6 +5,7 @@ apt install -y git
 WORKDIR /home/python
 USER python
 RUN python -m venv /home/python/venv 
+# "Activate" the venv
 ENV PATH="/home/python/venv/bin:$PATH"
 COPY min_req.txt req.txt
 RUN pip install -r req.txt

+ 3 - 4
tcp-proxy.py

@@ -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":