From 55b9c54c5a4b28263f8e5b61a6509723d0b9bce5 Mon Sep 17 00:00:00 2001 From: mksudo Date: Sun, 11 Dec 2022 16:16:27 -0800 Subject: [PATCH] fix dumb error in code causing compilation errors --- cheat-library/src/user/cheat/imap/InteractiveMap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheat-library/src/user/cheat/imap/InteractiveMap.cpp b/cheat-library/src/user/cheat/imap/InteractiveMap.cpp index 0ea8337..3975477 100644 --- a/cheat-library/src/user/cheat/imap/InteractiveMap.cpp +++ b/cheat-library/src/user/cheat/imap/InteractiveMap.cpp @@ -1407,7 +1407,7 @@ namespace cheat::feature for (auto& childLable : categoryChildren) { - if (regenerateExclude.find(childLable->id) == regenerateExclude.end()) + if (!regenerateExclude.contains(std::to_string(childLable->id))) { regenerateTime[childLable->id] = regenerateTimeInMS; }