fix: dark sanc at tavern north

fix: gt exit point for all players
This commit is contained in:
aerinon
2024-12-17 16:17:55 -07:00
parent 4f1f61bc68
commit 01f3f6ad50
3 changed files with 5 additions and 2 deletions

View File

@@ -132,7 +132,7 @@ def fill_world(world, plando, text_patches):
world.fix_trock_exit = {1: trfstr.strip().lower() == 'true'}
elif line.startswith('!fix_gtower_exit'):
_, gtfstr = line.split(':', 1)
world.fix_gtower_exit = gtfstr.strip().lower() == 'true'
world.fix_gtower_exit = {1: gtfstr.strip().lower() == 'true'}
elif line.startswith('!fix_pod_exit'):
_, podestr = line.split(':', 1)
world.fix_palaceofdarkness_exit = {1: podestr.strip().lower() == 'true'}