Skip to content

Commit 7c70b87

Browse files
authored
sm64ex: Fix randomizing Courses and Secrets separately (#2637)
Backported from #2569
1 parent 2512eb7 commit 7c70b87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

worlds/sm64ex/Rules.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def fix_reg(entrance_map: dict, entrance: SM64Levels, invalid_regions: set,
2121
def set_rules(world, player: int, area_connections: dict):
2222
randomized_level_to_paintings = sm64_level_to_paintings.copy()
2323
randomized_level_to_secrets = sm64_level_to_secrets.copy()
24-
if world.AreaRandomizer[player].value == 1: # Some randomization is happening, randomize Courses
24+
if world.AreaRandomizer[player].value >= 1: # Some randomization is happening, randomize Courses
2525
randomized_level_to_paintings = shuffle_dict_keys(world,sm64_level_to_paintings)
2626
if world.AreaRandomizer[player].value == 2: # Randomize Secrets as well
2727
randomized_level_to_secrets = shuffle_dict_keys(world,sm64_level_to_secrets)

0 commit comments

Comments
 (0)