Skip to content

Commit

Permalink
RoR2: fix event exits for dlc stages (ArchipelagoMW#1946)
Browse files Browse the repository at this point in the history
  • Loading branch information
kindasneaki authored Jul 6, 2023
1 parent 5f2c226 commit f2117be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worlds/ror2/Regions.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ def create_regions(multiworld: MultiWorld, player: int):
# DLC Locations
if multiworld.dlc_sotv[player]:
non_dlc_regions["Menu"].region_exits.append("Siphoned Forest")
other_regions["OrderedStage_2"].region_exits.append("Aphelian Sanctuary")
other_regions["OrderedStage_3"].region_exits.append("Sulfur Pools")
other_regions["OrderedStage_1"].region_exits.append("Aphelian Sanctuary")
other_regions["OrderedStage_2"].region_exits.append("Sulfur Pools")
other_regions["Void Fields"].region_exits.append("Void Locus")
regions_pool: Dict = {**all_location_regions, **other_regions, **dlc_other_regions}

Expand Down

0 comments on commit f2117be

Please sign in to comment.