diff options
| author | Malkierian <malkierian@gmail.com> | 2025-11-25 10:07:45 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-25 17:07:45 +0000 |
| commit | 00737364678d22446dda5ea67b390905b709966b (patch) | |
| tree | f5512d9d813281a19885ca37d809a1a87bf62b8a | |
| parent | 2ee4e70b9a414ded4b9d4609e6b3cd16462f6939 (diff) | |
Fix entrance value assigned to DMT sign outside Dodongo's for hinting. (#5973)
| -rw-r--r-- | soh/soh/OTRGlobals.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/soh/OTRGlobals.cpp b/soh/soh/OTRGlobals.cpp index 9023d8990..e7fe5f31b 100644 --- a/soh/soh/OTRGlobals.cpp +++ b/soh/soh/OTRGlobals.cpp @@ -2312,7 +2312,7 @@ extern "C" int CustomMessage_RetrieveIfExists(PlayState* play) { entrance = ENTR_GROTTOS_13; break; case TEXT_DMT_DC_SIGN: - entrance = ENTR_DEATH_MOUNTAIN_TRAIL_OUTSIDE_DODONGOS_CAVERN; + entrance = ENTR_DODONGOS_CAVERN_ENTRANCE; break; case TEXT_DMT_GC_SIGN: entrance = ENTR_GORON_CITY_UPPER_EXIT; |
