We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 233bd74 commit 18c5a38Copy full SHA for 18c5a38
worlds/sm64ex/Rules.py
@@ -21,7 +21,7 @@ def fix_reg(entrance_map: dict, entrance: SM64Levels, invalid_regions: set,
21
def set_rules(world, player: int, area_connections: dict):
22
randomized_level_to_paintings = sm64_level_to_paintings.copy()
23
randomized_level_to_secrets = sm64_level_to_secrets.copy()
24
- if world.AreaRandomizer[player].value == 1: # Some randomization is happening, randomize Courses
+ if world.AreaRandomizer[player].value >= 1: # Some randomization is happening, randomize Courses
25
randomized_level_to_paintings = shuffle_dict_keys(world,sm64_level_to_paintings)
26
if world.AreaRandomizer[player].value == 2: # Randomize Secrets as well
27
randomized_level_to_secrets = shuffle_dict_keys(world,sm64_level_to_secrets)
0 commit comments