Skip to content

Commit

Permalink
Update Client.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gaithern committed Dec 20, 2023
1 parent 21e0084 commit fe3d222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/lol/Client.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def _cmd_check_last_match(self):
item_ids_purchased = get_item_ids_purchased(self.player_puuid, last_match_info)
for item_id in item_ids_purchased:
if int(item_id) + game_mode_offset in unlocked_item_ids:
new_locations.append(int(item_id))
new_locations.append(int(item_id) + game_mode_offset + 10000000)
else:
self.output(f"Last Match Resulted in a Loss...")
else:
Expand Down

0 comments on commit fe3d222

Please sign in to comment.