|
@@ -176,7 +176,7 @@ class Game(protocol.Protocol):
|
|
|
self.linestate = "cim"
|
|
|
|
|
|
def sectorline(self, line: str):
|
|
|
- self.log.debug("sector:", self.current_sector, ':', line)
|
|
|
+ self.log.debug("sector: {0} : {1}".format(self.current_sector,line))
|
|
|
if line.startswith('Beacon : '):
|
|
|
pass # get beacon text
|
|
|
elif line.startswith('Ports : '):
|
|
@@ -224,7 +224,7 @@ class Game(protocol.Protocol):
|
|
|
_, _, work = line.partition(':')
|
|
|
work = work.strip().replace('(', '').replace(')', '').replace(' - ', ' ')
|
|
|
parts = [ int(x) for x in work.split(' ')]
|
|
|
- self.log.debug("Sectorline warps", parts)
|
|
|
+ self.log.debug("Sectorline warps {0}".format(parts))
|
|
|
self.gamedata.warp_to(self.current_sector, *parts)
|
|
|
self.sector_state = 'normal'
|
|
|
self.linestate = ''
|