From 6841158373d981ae731787daa17fe37b5ae7960d Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Thu, 16 Jul 2020 04:14:44 +0200 Subject: [PATCH] unfix fake world in glitched modes where ER is not cross-world --- Main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Main.py b/Main.py index 9ef746f8..f417d0e7 100644 --- a/Main.py +++ b/Main.py @@ -115,6 +115,10 @@ def main(args, seed=None): logger.info('Shuffling the World about.') for player in range(1, world.players + 1): + if world.logic[player] != "noglitches" and world.shuffle[player] in \ + {"vanilla", "dungeonssimple", "dungeonsfull", "simple", "restricted", "full"}: + world.fix_fake_world[player] = False + if world.mode[player] != 'inverted': link_entrances(world, player) mark_light_world_regions(world, player)