Yoshi's Island: Minor Fixes (#3142)

This commit is contained in:
PinkSwitch
2024-04-18 11:40:00 -05:00
committed by GitHub
parent ee1e578201
commit 5996a8163d
3 changed files with 5 additions and 5 deletions

View File

@@ -274,7 +274,7 @@ def setup_gamevars(world: "YoshisIslandWorld") -> None:
norm_start_lv.extend([0x24, 0x3C])
hard_start_lv.extend([0x1D, 0x3C])
if world.options.level_shuffle != LevelShuffle.option_bosses_guranteed:
if world.options.level_shuffle != LevelShuffle.option_bosses_guaranteed:
hard_start_lv.extend([0x07, 0x1B, 0x1F, 0x2B, 0x33, 0x37])
if not world.options.shuffle_midrings:
easy_start_lv.extend([0x1B])
@@ -286,7 +286,7 @@ def setup_gamevars(world: "YoshisIslandWorld") -> None:
if world.options.level_shuffle:
world.global_level_list.remove(starting_level)
world.random.shuffle(world.global_level_list)
if world.options.level_shuffle == LevelShuffle.option_bosses_guranteed:
if world.options.level_shuffle == LevelShuffle.option_bosses_guaranteed:
for i in range(11):
world.global_level_list = [item for item in world.global_level_list
if item not in boss_lv]