mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 04:01:32 -06:00
WebHost: Fix KeyError in alttp multitracker (#2194)
This commit is contained in:
@@ -1683,7 +1683,7 @@ def get_LttP_multiworld_tracker(tracker: UUID):
|
|||||||
for item_id in precollected:
|
for item_id in precollected:
|
||||||
attribute_item(team, player, item_id)
|
attribute_item(team, player, item_id)
|
||||||
for location in locations_checked:
|
for location in locations_checked:
|
||||||
if location not in player_locations or location not in player_location_to_area[player]:
|
if location not in player_locations or location not in player_location_to_area.get(player, {}):
|
||||||
continue
|
continue
|
||||||
item, recipient, flags = player_locations[location]
|
item, recipient, flags = player_locations[location]
|
||||||
recipients = groups.get(recipient, [recipient])
|
recipients = groups.get(recipient, [recipient])
|
||||||
|
Reference in New Issue
Block a user