diff --git a/soh/soh/Enhancements/randomizer/location_access.cpp b/soh/soh/Enhancements/randomizer/location_access.cpp index 7048d579f..5f785da7b 100644 --- a/soh/soh/Enhancements/randomizer/location_access.cpp +++ b/soh/soh/Enhancements/randomizer/location_access.cpp @@ -908,6 +908,8 @@ void RegionTable_Init() { } } + #if 0 // Print all conditions for debugging + // RANDOTODO: Remove before merging std::ostringstream ss; for (uint32_t i = RR_ROOT; i <= RR_GANONS_CASTLE; i++) { @@ -923,6 +925,7 @@ void RegionTable_Init() { } SPDLOG_INFO("All Conditions:\n{}", ss.str()); + #endif } void ReplaceFirstInString(std::string& s, std::string const& toReplace, std::string const& replaceWith) {