Skip to content

Commit

Permalink
Zork Grand Inquisitor: Precollect Start with Hotspot Items in determi…
Browse files Browse the repository at this point in the history
…nistic order (ArchipelagoMW#4412)
  • Loading branch information
Mysteryem authored Dec 31, 2024
1 parent 3c9270d commit 6e59ee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/zork_grand_inquisitor/world.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def create_items(self) -> None:

if start_with_hotspot_items:
item: ZorkGrandInquisitorItems
for item in items_with_tag(ZorkGrandInquisitorTags.HOTSPOT):
for item in sorted(items_with_tag(ZorkGrandInquisitorTags.HOTSPOT), key=lambda item: item.name):
self.multiworld.push_precollected(self.create_item(item.value))

def create_item(self, name: str) -> ZorkGrandInquisitorItem:
Expand Down

0 comments on commit 6e59ee2

Please sign in to comment.