summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalkierian <malkierian@gmail.com>2026-03-27 20:43:55 -0700
committerGitHub <noreply@github.com>2026-03-28 03:43:55 +0000
commit6fea1821a1cf5abd0a5fc6652b562c9a1d8e8a61 (patch)
tree27cf563c1274aeeae9c2a169eedcb1b4e631fb3c
parent42ba25449ee39ed280821f328275c569ea41e975 (diff)
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)
-rw-r--r--soh/soh/SohGui/SohMenuEnhancements.cpp10
1 files 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."));