Skip to content

Commit

Permalink
Update wrpl_unpacker.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Yay5379 authored Apr 29, 2024
1 parent e042484 commit 00f8db4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/wt_client_replay_parser/wrpl_unpacker.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ def main():
f'visibility:t="{parsed.header.visibility}"\n'
f'difficulty:i={int(parsed.header.difficulty)}\n'
f'sessionType:i={int(parsed.header.session_type)}\n'
f'sessionId:t="{parsed.header.session_id}"\n'
f'sessionId:i={parsed.header.session_id}\n'
f'locName:t="{parsed.header.loc_name}"\n'
f'startTime:t="{parsed.header.start_time}"\n'
f'startTime:i={parsed.header.start_time}\n'
f'timeLimit:i={parsed.header.time_limit}\n'
f'scoreLimit:i={parsed.header.score_limit}\n'
f'battleClass:t="{parsed.header.battle_class}"\n'
Expand All @@ -84,4 +84,4 @@ def main():


if __name__ == '__main__':
sys.exit(main())
sys.exit(main())

0 comments on commit 00f8db4

Please sign in to comment.