Skip to content

Commit 79607b2

Browse files
committed
Don't report this one bad s2gs key.
1 parent f3e97db commit 79607b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sc2reader/resources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,7 @@ def load_player_stats(self):
965965
order=stat_name,
966966
build_index=command[1] >> 16
967967
))
968-
else:
968+
elif stat_id != 83886080: # We know this one is always bad.
969969
self.logger.warn("Untranslatable key = {0}".format(stat_id))
970970

971971
# Once we've compiled all the build commands we need to make

0 commit comments

Comments
 (0)