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 89f4eee commit 6f30900Copy full SHA for 6f30900
sc2reader/readers.py
@@ -95,6 +95,7 @@ def __call__(self, data, replay):
95
ai_build=data.read_bits(7) if replay.base_build >= 23925 else None,
96
handicap=data.read_bits(7),
97
observe=data.read_bits(2),
98
+ logo_index=data.read_uint32() if replay.base_build >= 32283 else None,
99
working_set_slot_id=data.read_uint8() if replay.base_build >= 24764 and data.read_bool() else None,
100
rewards=[data.read_uint32() for i in range(data.read_bits(6 if replay.base_build >= 24764 else 5))],
101
toon_handle=data.read_aligned_string(data.read_bits(7)) if replay.base_build >= 17266 else None,
0 commit comments