From 2d9d67bbd056ff52e9637c5603fb4d220d284dbe Mon Sep 17 00:00:00 2001 From: Garrett Cox Date: Fri, 5 Aug 2022 23:44:53 -0500 Subject: [PATCH] Add missing case --- soh/src/code/z_parameter.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/soh/src/code/z_parameter.c b/soh/src/code/z_parameter.c index 64cfed212..668637cf1 100644 --- a/soh/src/code/z_parameter.c +++ b/soh/src/code/z_parameter.c @@ -1797,6 +1797,9 @@ u8 Item_Give(GlobalContext* globalCtx, u8 item) { case ITEM_GERUDO_TRAINING_GROUNDS_SMALL_KEY: mapIndex = SCENE_MEN; break; + case ITEM_GERUDO_FORTRESS_SMALL_KEY: + mapIndex = SCENE_GERUDOWAY; + break; case ITEM_GANONS_CASTLE_SMALL_KEY: mapIndex = SCENE_GANONTIKA; break;