From 8598cc068c0ab80ec5dc4475fa5d32f125c437a7 Mon Sep 17 00:00:00 2001 From: Anthony Stewart Date: Sat, 22 Mar 2025 00:04:23 -0500 Subject: [PATCH] Remove debug console to recalculate available checks, this can now be done by toggling Enable Available Checks in the settings. --- soh/soh/Enhancements/debugconsole.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/soh/soh/Enhancements/debugconsole.cpp b/soh/soh/Enhancements/debugconsole.cpp index 8bb0a9cc8..33eed43f9 100644 --- a/soh/soh/Enhancements/debugconsole.cpp +++ b/soh/soh/Enhancements/debugconsole.cpp @@ -1408,11 +1408,6 @@ static bool SfxHandler(std::shared_ptr Console, const std::vector return 0; } -static bool RecalculateAvailableChecksHandler(std::shared_ptr Console, const std::vector& args, std::string* output) { - CheckTracker::RecalculateAvailableChecks(); - return 0; -} - void DebugConsole_Init(void) { // Console CMD_REGISTER("file_select", {FileSelectHandler, "Returns to the file select."}); @@ -1602,7 +1597,5 @@ void DebugConsole_Init(void) { {"group_name", Ship::ArgumentType::TEXT, true}, }}); - CMD_REGISTER("recalculate_available_checks", {RecalculateAvailableChecksHandler, "Recalculate available checks."}); - Ship::Context::GetInstance()->GetWindow()->GetGui()->SaveConsoleVariablesNextFrame(); }