Explorar el Código

Allow mod name in camelCase

Tomasz Zieliński hace 1 año
padre
commit
a4392fce36
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      lib/mapObjectConstructors/CObjectClassesHandler.cpp

+ 1 - 1
lib/mapObjectConstructors/CObjectClassesHandler.cpp

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