unfix fake world in glitched modes where ER is not cross-world
This commit is contained in:
parent
626b6b0521
commit
6841158373
4
Main.py
4
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)
|
||||
|
|
Loading…
Reference in New Issue