diff options
| author | djevangelia <263709373+djevangelia@users.noreply.github.com> | 2026-07-11 17:18:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-11 15:18:55 +0000 |
| commit | 847e3cd3238a34f3e4fc95b5871a2c79aafaabee (patch) | |
| tree | e1d22a574e5d4215213fa1718d164d5d809b1e6d /soh/src/code | |
| parent | bd7191875a62063c67c2eb51700f6d5d09d12ac9 (diff) | |
Maintenance, edits and addition to Lake Hylia water control (#6884)
Diffstat (limited to 'soh/src/code')
| -rw-r--r-- | soh/src/code/z_map_exp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/soh/src/code/z_map_exp.c b/soh/src/code/z_map_exp.c index 886036352..681e20f05 100644 --- a/soh/src/code/z_map_exp.c +++ b/soh/src/code/z_map_exp.c @@ -392,22 +392,22 @@ void Map_InitData(PlayState* play, s16 room) { extendedMapIndex = mapIndex; if (play->sceneNum == SCENE_GRAVEYARD) { if (CHECK_QUEST_ITEM(QUEST_SONG_NOCTURNE)) { - extendedMapIndex = 0x14; + extendedMapIndex = 0x14; // Entrance to Shadow Temple visible } } else if (play->sceneNum == SCENE_LAKE_HYLIA) { if ((LINK_AGE_IN_YEARS == YEARS_ADULT) && ((!IS_RANDO && !CHECK_QUEST_ITEM(QUEST_MEDALLION_WATER)) || - (IS_RANDO && !Flags_GetEventChkInf(EVENTCHKINF_USED_WATER_TEMPLE_BLUE_WARP)))) { - extendedMapIndex = 0x15; + (IS_RANDO && !Flags_GetEventChkInf(EVENTCHKINF_RAISED_LAKE_HYLIA_WATER)))) { + extendedMapIndex = 0x15; // Lowered water level } } else if (play->sceneNum == SCENE_GERUDO_VALLEY) { if ((LINK_AGE_IN_YEARS == YEARS_ADULT) && !GET_EVENTCHKINF_CARPENTERS_FREE_ALL()) { - extendedMapIndex = 0x16; + extendedMapIndex = 0x16; // Bridge not built } } else if (play->sceneNum == SCENE_GERUDOS_FORTRESS) { if ((!IS_RANDO && GET_EVENTCHKINF_CARPENTERS_FREE_ALL()) || (IS_RANDO && CHECK_QUEST_ITEM(QUEST_GERUDO_CARD))) { - extendedMapIndex = 0x17; + extendedMapIndex = 0x17; // Horseback archery visible } } osSyncPrintf(VT_FGCOL(BLUE)); |
