Skip to content

Commit

Permalink
Correctly convert steam64 conversion to str for logs ... lol
Browse files Browse the repository at this point in the history
  • Loading branch information
Ooglely committed Dec 18, 2024
1 parent 0db4e63 commit 97d6186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logs/searcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ async def searcher(self):
# Check if at least half the players are in the log
player_count = 0
for player_id in log_data["players"]:
if get_steam64(player_id) in steam_ids:
if str(get_steam64(player_id)) in steam_ids:
player_count += 1
if player_count < (len(steam_ids) / 2):
continue
Expand Down

0 comments on commit 97d6186

Please sign in to comment.