CV64: Include player in APPP constructor (#3175)

This commit is contained in:
Silvris 2024-04-18 18:24:00 -05:00 committed by GitHub
parent b372b9da20
commit a06bca95ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ class CV64World(World):
offset_data.update(get_start_inventory_data(self.player, self.options, offset_data.update(get_start_inventory_data(self.player, self.options,
self.multiworld.precollected_items[self.player])) self.multiworld.precollected_items[self.player]))
patch = CV64ProcedurePatch() patch = CV64ProcedurePatch(player=self.player, player_name=self.multiworld.player_name[self.player])
write_patch(self, patch, offset_data, shop_name_list, shop_desc_list, shop_colors_list, active_locations) write_patch(self, patch, offset_data, shop_name_list, shop_desc_list, shop_colors_list, active_locations)
rom_path = os.path.join(output_directory, f"{self.multiworld.get_out_file_name_base(self.player)}" rom_path = os.path.join(output_directory, f"{self.multiworld.get_out_file_name_base(self.player)}"