From 0c486593c56a4e340999bf7fe207487a640a1ec7 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Thu, 1 Mar 2018 21:34:19 -0500 Subject: [PATCH] Fix performance --- EntranceShuffle.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index 9d4458c6..4012d3cb 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -4,13 +4,13 @@ import random def link_entrances(world): + connect_two_way(world, 'Links House', 'Links House Exit') # unshuffled. For now + connect_exit(world, 'Chris Houlihan Room Exit', 'Links House') # should always match link's house, except for plandos + # setup mandatory connections for exitname, regionname in mandatory_connections: connect_simple(world, exitname, regionname) - connect_two_way(world, 'Links House', 'Links House Exit') # unshuffled. For now - connect_exit(world, 'Chris Houlihan Room Exit', 'Links House') # should always match link's house, except for plandos - # if we do not shuffle, set default connections if world.shuffle == 'vanilla': for exitname, regionname in default_connections: