From 6fea1821a1cf5abd0a5fc6652b562c9a1d8e8a61 Mon Sep 17 00:00:00 2001 From: Malkierian Date: Fri, 27 Mar 2026 20:43:55 -0700 Subject: [PATCH] Changed name of scarecrow's song enhancement and added to the description to clarify that it only skips song playback without the rando setting. (#6423) --- soh/soh/SohGui/SohMenuEnhancements.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/soh/soh/SohGui/SohMenuEnhancements.cpp b/soh/soh/SohGui/SohMenuEnhancements.cpp index 8e9a9059b..c8e6c34d4 100644 --- a/soh/soh/SohGui/SohMenuEnhancements.cpp +++ b/soh/soh/SohGui/SohMenuEnhancements.cpp @@ -491,16 +491,18 @@ void SohMenu::AddMenuEnhancements() { AddWidget(path, "Skip Tower Escape", WIDGET_CVAR_CHECKBOX) .CVar(CVAR_ENHANCEMENT("TimeSavers.SkipTowerEscape")) .Options(CheckboxOptions().Tooltip("Skip the tower escape sequence between Ganondorf and Ganon.")); - AddWidget(path, "Skip Scarecrow's Song", WIDGET_CVAR_CHECKBOX) + AddWidget(path, "Skip Playing Scarecrow's Song", WIDGET_CVAR_CHECKBOX) .CVar(CVAR_ENHANCEMENT("InstantScarecrow")) .PreFunc([](WidgetInfo& info) { info.options->disabled = IS_RANDO && OTRGlobals::Instance->gRandoContext->GetOption(RSK_SKIP_SCARECROWS_SONG); - info.options->disabledTooltip = "This setting is forcefully enabled because a randomized " - "save file with the option \"Skip Scarecrow Song\" is currently loaded."; + info.options->disabledTooltip = "This setting is forcefully enabled because a randomized save " + "file with the option \"Skip Scarecrow's Song\" is currently loaded."; }) .Options(CheckboxOptions().Tooltip( - "Pierre appears when an Ocarina is pulled out. Requires learning the Scarecrow's Song first.")); + "Pierre appears when an Ocarina is pulled out. Requires learning the Scarecrow's Song first.\n" + "Without the randomizer option \"Skip Scarecrow's Song\" enabled for a seed, this still requires you " + "to teach the scarecrow the song as both ages before summoning.")); AddWidget(path, "Faster Rupee Accumulator", WIDGET_CVAR_CHECKBOX) .CVar(CVAR_ENHANCEMENT("FasterRupeeAccumulator")) .Options(CheckboxOptions().Tooltip("Causes your Wallet to fill and empty faster when you gain or lose money."));