unfix fake world in glitched modes where ER is not cross-world

This commit is contained in:
Fabian Dill 2020-07-16 04:14:44 +02:00
parent 626b6b0521
commit 6841158373
1 changed files with 4 additions and 0 deletions

View File

@ -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)