From a829ed00051b5e4d030075d04da679bff85a8562 Mon Sep 17 00:00:00 2001 From: JordanLongstaff Date: Sat, 7 Dec 2024 14:58:13 -0500 Subject: [PATCH] Fix bug: Ruto's letter was not removed from bottle --- soh/soh/Enhancements/timesaver_hook_handlers.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/soh/soh/Enhancements/timesaver_hook_handlers.cpp b/soh/soh/Enhancements/timesaver_hook_handlers.cpp index 2c33d608411..06da708fa18 100644 --- a/soh/soh/Enhancements/timesaver_hook_handlers.cpp +++ b/soh/soh/Enhancements/timesaver_hook_handlers.cpp @@ -407,6 +407,7 @@ void TimeSaverOnVanillaBehaviorHandler(GIVanillaBehavior id, bool* should, va_li case VB_PLAY_MWEEP_CS: { if (CVarGetInteger(CVAR_ENHANCEMENT("TimeSavers.SkipCutscene.Story"), 0)) { *should = false; + Inventory_ReplaceItem(gPlayState, ITEM_LETTER_RUTO, ITEM_BOTTLE); Flags_SetEventChkInf(EVENTCHKINF_KING_ZORA_MOVED); } break;