diff options
| author | Malkierian <malkierian@gmail.com> | 2025-10-28 17:01:59 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-28 17:01:59 -0700 |
| commit | 48f4f56bac082351ad7eb51d218d43523e4f9e9e (patch) | |
| tree | ad18673c3731b408eec8e9b5601fc4dd314388d6 | |
| parent | 1b29c0cad36f64ec1217b6ba192c99455a100f66 (diff) | |
Change disabling rules for Skip Feeding Jabu-Jabu to reflect the fact that it only works in rando based on the rando setting. (#5889)
| -rw-r--r-- | soh/soh/SohGui/SohMenuEnhancements.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/soh/soh/SohGui/SohMenuEnhancements.cpp b/soh/soh/SohGui/SohMenuEnhancements.cpp index 639d7469b..a48706035 100644 --- a/soh/soh/SohGui/SohMenuEnhancements.cpp +++ b/soh/soh/SohGui/SohMenuEnhancements.cpp @@ -334,8 +334,7 @@ void SohMenu::AddMenuEnhancements() { AddWidget(path, "Skip Feeding Jabu-Jabu", WIDGET_CVAR_CHECKBOX) .CVar(CVAR_ENHANCEMENT("TimeSavers.SkipJabuJabuFish")) .PreFunc([](WidgetInfo& info) { - info.options->disabled = - IS_RANDO && OTRGlobals::Instance->gRandoContext->GetOption(RSK_JABU_OPEN).Is(RO_JABU_OPEN); + info.options->disabled = IS_RANDO; info.options->disabledTooltip = "This setting is disabled because a randomizer savefile with \"Jabu-Jabu: Open\" is loaded."; }) |
