diff --git a/libultraship/libultraship/SohImGuiImpl.cpp b/libultraship/libultraship/SohImGuiImpl.cpp index 4f46e7791..df480af82 100644 --- a/libultraship/libultraship/SohImGuiImpl.cpp +++ b/libultraship/libultraship/SohImGuiImpl.cpp @@ -1272,7 +1272,7 @@ namespace SohImGui { CVar_SetS32("gRandoGenerating", 1); Game::SaveSettings(); - RandoMain::GenerateRando(); + // RandoMain::GenerateRando(); CVar_SetS32("gRandoGenerating", 0); Game::SaveSettings(); diff --git a/soh/soh/Enhancements/debugconsole.cpp b/soh/soh/Enhancements/debugconsole.cpp index 1b892be74..39fdd4035 100644 --- a/soh/soh/Enhancements/debugconsole.cpp +++ b/soh/soh/Enhancements/debugconsole.cpp @@ -4,6 +4,7 @@ #include "debugconsole.h" #include "../libultraship/SohImGuiImpl.h" +// #include "include/randomizer/rando_main.hpp" #include "savestates.h" #include @@ -441,6 +442,13 @@ static bool GetCVarHandler(const std::vector& args) { return CMD_SUCCESS; } +// static bool GenerateRandoHandler(const std::vector& args) { +// RandoMain::GenerateRando(); + +// INFO("[SOH] Randomized?"); +// return CMD_SUCCESS; +// } + void DebugConsole_Init(void) { CMD_REGISTER("kill", { KillPlayerHandler, "Commit suicide." }); CMD_REGISTER("map", { LoadSceneHandler, "Load up kak?" }); @@ -490,6 +498,7 @@ void DebugConsole_Init(void) { CMD_REGISTER("set_slot", { StateSlotSelectHandler, "Selects a SaveState slot", { { "Slot number", ArgumentType::NUMBER, } } }); + // CMD_REGISTER("generate_rando", { GenerateRandoHandler, "Generate Rando." }); DebugConsole_LoadCVars(); }