SA2B: Fix generate_filler_item_name (#2074)

This commit is contained in:
PoryGone 2023-08-01 02:15:28 -04:00 committed by GitHub
parent 898558b121
commit 1d6a2bff4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -422,7 +422,7 @@ class SA2BWorld(World):
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)