Skip to content

Commit 6f30900

Browse files
committed
fix for 2.1.4
1 parent 89f4eee commit 6f30900

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sc2reader/readers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ def __call__(self, data, replay):
9595
ai_build=data.read_bits(7) if replay.base_build >= 23925 else None,
9696
handicap=data.read_bits(7),
9797
observe=data.read_bits(2),
98+
logo_index=data.read_uint32() if replay.base_build >= 32283 else None,
9899
working_set_slot_id=data.read_uint8() if replay.base_build >= 24764 and data.read_bool() else None,
99100
rewards=[data.read_uint32() for i in range(data.read_bits(6 if replay.base_build >= 24764 else 5))],
100101
toon_handle=data.read_aligned_string(data.read_bits(7)) if replay.base_build >= 17266 else None,

0 commit comments

Comments
 (0)