Skip to content

Commit

Permalink
fix dumb error in code causing compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mksudo committed Dec 12, 2022
1 parent f6c6cd8 commit 55b9c54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cheat-library/src/user/cheat/imap/InteractiveMap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 55b9c54

Please sign in to comment.