From 97c7fdaf59658ecddc45a47958b5edf10bddb1e9 Mon Sep 17 00:00:00 2001 From: AmazingAmpharos Date: Sat, 2 Dec 2017 00:18:38 -0600 Subject: [PATCH] PoD mislabel/softlock fix Two addresses for PoD item locations were reversed, causing items to be placed with incorrect assumptions. This fixes that problem. --- Regions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Regions.py b/Regions.py index cfab146d..e1e504d2 100644 --- a/Regions.py +++ b/Regions.py @@ -458,10 +458,10 @@ location_table = {'Mushroom': (0x180013, False, 'in the woods'), 'Turtle Rock - Eye Bridge - Top Right': (0xEA28, False, 'in Turtle Rock'), 'Turtle Rock - Trinexx': (0x180159, False, 'with Trinexx'), 'Palace of Darkness - Shooter Room': (0xEA5B, False, 'in Palace of Darkness'), - 'Palace of Darkness - The Arena - Bridge': (0xEA3A, False, 'in Palace of Darkness'), + 'Palace of Darkness - The Arena - Bridge': (0xEA3D, False, 'in Palace of Darkness'), 'Palace of Darkness - Stalfos Basement': (0xEA49, False, 'in Palace of Darkness'), 'Palace of Darkness - Big Key Chest': (0xEA37, False, 'in Palace of Darkness'), - 'Palace of Darkness - The Arena - Ledge': (0xEA3D, False, 'in Palace of Darkness'), + 'Palace of Darkness - The Arena - Ledge': (0xEA3A, False, 'in Palace of Darkness'), 'Palace of Darkness - Map Chest': (0xEA52, False, 'in Palace of Darkness'), 'Palace of Darkness - Compass Chest': (0xEA43, False, 'in Palace of Darkness'), 'Palace of Darkness - Dark Basement - Left': (0xEA4C, False, 'in Palace of Darkness'),