Compare commits

...

3 Commits

Author SHA1 Message Date
Vasyl Horbachenko
71e22bdb21 Merge remote-tracking branch 'origin/master' 2018-07-15 04:21:07 +03:00
Vasyl Horbachenko
3c2025ab44 minor hotfixes in mp debriefing (WIP) 2018-07-15 04:20:55 +03:00
Vasyl Horbachenko
d314e22970 Update start.bat 2018-07-13 04:59:59 +03:00
2 changed files with 4 additions and 4 deletions

View File

@@ -1 +1 @@
py.exe __init__.py "C:\Users\shdwp" > logs.txt 2>&1
py.exe __init__.py %UserProfile% > logs.txt 2>&1

View File

@@ -29,18 +29,18 @@ def parse_mutliplayer_debriefing(contents: str):
for line in [x.strip() for x in contents.splitlines()]:
if line.startswith("events ="):
in_events = True
elif line.startswith("}, -- end of events"):
elif line.startswith("} -- end of events"):
in_events = False
if not in_events:
continue
key = None
if line.startswith("initiator"):
if line.startswith("initiator\t"):
key = "initiator"
if element is None:
element = {}
elif line.startswith("type"):
elif line.startswith("type\t"):
key = "type"
if element is None:
element = {}