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(); }