Skip to content

Commit

Permalink
SA2B: Fix generate_filler_item_name (ArchipelagoMW#2074)
Browse files Browse the repository at this point in the history
  • Loading branch information
PoryGone authored Aug 1, 2023
1 parent 898558b commit 1d6a2bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/sa2b/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def create_item(self, name: str, force_non_progression=False, goal=0) -> Item:
return created_item

def get_filler_item_name(self) -> str:
self.multiworld.random.choice(junk_table.keys())
return self.multiworld.random.choice(list(junk_table.keys()))

def set_rules(self):
set_rules(self.multiworld, self.player, self.gate_bosses, self.boss_rush_map, self.mission_map, self.mission_count_map)
Expand Down

0 comments on commit 1d6a2bf

Please sign in to comment.