mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
SA2B Style Improvements (#525)
This commit is contained in:
@@ -255,16 +255,16 @@ location_table = {}
|
||||
def setup_locations(world, player: int):
|
||||
location_table = {**first_mission_location_table}
|
||||
|
||||
if world.IncludeMissions[player].value >= 2:
|
||||
if world.include_missions[player].value >= 2:
|
||||
location_table.update({**second_mission_location_table})
|
||||
|
||||
if world.IncludeMissions[player].value >= 3:
|
||||
if world.include_missions[player].value >= 3:
|
||||
location_table.update({**third_mission_location_table})
|
||||
|
||||
if world.IncludeMissions[player].value >= 4:
|
||||
if world.include_missions[player].value >= 4:
|
||||
location_table.update({**fourth_mission_location_table})
|
||||
|
||||
if world.IncludeMissions[player].value >= 5:
|
||||
if world.include_missions[player].value >= 5:
|
||||
location_table.update({**fifth_mission_location_table})
|
||||
|
||||
location_table.update({**upgrade_location_table})
|
||||
|
Reference in New Issue
Block a user