We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eb4593 commit 4d42147Copy full SHA for 4d42147
sc2reader/readers.py
@@ -920,8 +920,10 @@ def control_group_update_event(self, data):
920
)
921
922
def decrement_game_time_remaining_event(self, data):
923
+ # really this should be set to 19, and a new GameEventsReader_41743 should be introduced that specifies 32 bits.
924
+ # but I dont care about ability to read old replays.
925
return dict(
- decrement_ms=data.read_bits(19)
926
+ decrement_ms=data.read_bits(32)
927
928
929
0 commit comments