Forgot straight stairs in vanilla

This commit is contained in:
aerinon
2020-05-02 15:15:21 -06:00
parent 0705ccaeda
commit aeb3b3d4b1

View File

@@ -37,6 +37,8 @@ def link_doors(world, player):
if world.doorShuffle[player] == 'vanilla':
for entrance, ext in open_edges:
connect_two_way(world, entrance, ext, player)
for entrance, ext in straight_staircases:
connect_two_way(world, entrance, ext, player)
for exitName, regionName in vanilla_logical_connections:
connect_simple_door(world, exitName, regionName, player)
for entrance, ext in spiral_staircases: