|
@@ -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'
|