From 8ca4b3b601377c84bc5da9f4040664de65f34190 Mon Sep 17 00:00:00 2001 From: JordanLongstaff Date: Mon, 9 Dec 2024 13:56:16 -0500 Subject: [PATCH] Move `*should = false` out of condition --- soh/soh/Enhancements/timesaver_hook_handlers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/soh/Enhancements/timesaver_hook_handlers.cpp b/soh/soh/Enhancements/timesaver_hook_handlers.cpp index 20946a9a3cb..fb1e1e5e293 100644 --- a/soh/soh/Enhancements/timesaver_hook_handlers.cpp +++ b/soh/soh/Enhancements/timesaver_hook_handlers.cpp @@ -345,9 +345,9 @@ void TimeSaverOnVanillaBehaviorHandler(GIVanillaBehavior id, bool* should, va_li } if ((paramsHighByte & 0x3F) != 0x3F) { Flags_SetSwitch(gPlayState, paramsHighByte & 0x3F); - *should = false; } Actor_Kill(&naviTalk->actor); + *should = false; } break; }