fix dumb error in code causing compilation errors

This commit is contained in:
mksudo 2022-12-11 16:16:27 -08:00
parent f6c6cd87c8
commit 55b9c54c5a

View File

@ -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;
}