From 0c19604a38849d3b56f9d3c5acbf0c0b421c9c83 Mon Sep 17 00:00:00 2001 From: Anthony Stewart Date: Fri, 13 Jun 2025 20:10:34 -0500 Subject: [PATCH] Commented out printing all conditions. --- soh/soh/Enhancements/randomizer/location_access.cpp | 3 +++ 1 file changed, 3 insertions(+) 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) {