Browse Source

Don't parse (Special) (StarDock) ports.

Steve Thielemann 5 years ago
parent
commit
c4e84d8eef
1 changed files with 3 additions and 2 deletions
  1. 3 2
      tcp-proxy.py

+ 3 - 2
tcp-proxy.py

@@ -212,18 +212,19 @@ class Game(protocol.Protocol):
             pass # get beacon text
         elif line.startswith('Ports   : '):
             # Ports   : Ballista, Class 1 (BBS)
+            self.sector_state = 'port'            
             if '<=-DANGER-=>' in line:
                 # Port is destroyed
                 if sector in self.gamedate.ports:
                     del self.gamedata.ports[sector]
-            else:
+            elif '(StarDock)' not in line:
                 _, _, class_port = line.partition(', Class ')
                 c, port = class_port.split(' ')
                 c = int(c)
                 port = port.replace('(', '').replace(')', '')                
                 data = { 'port': port, 'class': c }
                 self.gamedata.set_port(self.current_sector, data)
-                self.sector_state = 'port'
+
         elif line.startswith('Planets : '):
             # Planets : (O) Flipper
             self.sector_state = 'planet'