1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-26 03:52:01 +02:00

Allow mod name in camelCase

This commit is contained in:
Tomasz Zieliński 2024-09-23 20:34:26 +02:00
parent 54ba4d50d6
commit a4392fce36

View File

@ -440,7 +440,7 @@ CompoundMapObjectID CObjectClassesHandler::getCompoundIdentifier(const std::stri
type = typeAndName.second;
}
return getCompoundIdentifier(scopeAndFullName.first, type, subtype);
return getCompoundIdentifier(boost::to_lower_copy(scopeAndFullName.first), type, subtype);
}
std::set<MapObjectID> CObjectClassesHandler::knownObjects() const