From c466c92905240571f26add45ef167c13af2cc503 Mon Sep 17 00:00:00 2001 From: aMannus Date: Sat, 18 Jan 2025 23:54:59 +0100 Subject: [PATCH] Uncomment chime on one points (#4901) --- soh/soh/Enhancements/timesaver_hook_handlers.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/soh/soh/Enhancements/timesaver_hook_handlers.cpp b/soh/soh/Enhancements/timesaver_hook_handlers.cpp index 75d41d531..d41139780 100644 --- a/soh/soh/Enhancements/timesaver_hook_handlers.cpp +++ b/soh/soh/Enhancements/timesaver_hook_handlers.cpp @@ -108,8 +108,7 @@ void BgSpot03Taki_KeepOpen(BgSpot03Taki* bgSpot03Taki, PlayState* play) { static int successChimeCooldown = 0; void RateLimitedSuccessChime() { if (successChimeCooldown == 0) { - // Currently disabled, need to find a better way to do this, while being consistent with vanilla - // func_80078884(NA_SE_SY_CORRECT_CHIME); + Sfx_PlaySfxCentered(NA_SE_SY_CORRECT_CHIME); successChimeCooldown = 120; } }