Commented out printing all conditions.

This commit is contained in:
Anthony Stewart 2025-06-13 20:10:34 -05:00 committed by xxAtrain223
commit 0c19604a38

View file

@ -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) {