diff --git a/BaseClasses.py b/BaseClasses.py index 261c5c33..b2dbf047 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -24,7 +24,7 @@ class World(object): self.players = players self.teams = 1 self.owShuffle = owShuffle.copy() - self.owKeepSimilar = True + self.owKeepSimilar = {} self.shuffle = shuffle.copy() self.doorShuffle = doorShuffle.copy() self.intensity = {} diff --git a/Main.py b/Main.py index c0371f59..84d04426 100644 --- a/Main.py +++ b/Main.py @@ -73,6 +73,7 @@ def main(args, seed=None, fish=None): world.crystals_needed_for_gt = {player: random.randint(0, 7) if args.crystals_gt[player] == 'random' else int(args.crystals_gt[player]) for player in range(1, world.players + 1)} world.crystals_ganon_orig = args.crystals_ganon.copy() world.crystals_gt_orig = args.crystals_gt.copy() + world.owKeepSimilar = args.ow_keepsimilar.copy() world.open_pyramid = args.openpyramid.copy() world.boss_shuffle = args.shufflebosses.copy() world.enemy_shuffle = args.shuffleenemies.copy()