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 12c530c commit c6d585fCopy full SHA for c6d585f
sc2reader/resources.py
@@ -455,8 +455,8 @@ def get_team(team_id):
455
# Pretty sure this just never worked, forget about it for now
456
self.recorder = None
457
458
- player_names = sorted(map(lambda p: p.name, self.people))
459
- hash_input = self.gateway+":"+','.join(player_names)
+ entity_names = sorted(map(lambda p: p.name, self.entities))
+ hash_input = self.gateway+":"+','.join(entity_names)
460
self.people_hash = hashlib.sha256(hash_input.encode('utf8')).hexdigest()
461
462
# The presence of observers and/or computer players makes this not actually ladder
0 commit comments