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

Fix incorrect identifiers format

This commit is contained in:
Ivan Savenko 2023-01-19 01:43:12 +02:00
parent eebc6fd625
commit a3846f1b31
2 changed files with 5 additions and 5 deletions

View File

@ -390,7 +390,7 @@ CArtifact * CArtHandler::loadFromJson(const std::string & scope, const JsonNode
JsonNode conf;
conf.setMeta(scope);
VLC->objtypeh->loadSubObject(art->getJsonKey(), conf, Obj::ARTIFACT, art->getIndex());
VLC->objtypeh->loadSubObject(art->identifier, conf, Obj::ARTIFACT, art->getIndex());
if(!art->advMapDef.empty())
{

View File

@ -215,7 +215,7 @@ std::string ObjectClass::getJsonKey() const
std::string ObjectClass::getNameTextID() const
{
return TextIdentifier("object", identifier, "name").get();
return TextIdentifier("object", modScope, identifier, "name").get();
}
std::string ObjectClass::getNameTranslated() const
@ -246,10 +246,10 @@ ObjectClass * CObjectClassesHandler::loadFromJson(const std::string & scope, con
if ( subMeta != "core")
logMod->warn("Object %s:%s.%s - attempt to load object with preset index! This option is reserved for built-in mod", subMeta, name, subData.first );
size_t subIndex = subData.second["index"].Integer();
loadSubObject(scope, subData.first, subData.second, obj, subIndex);
loadSubObject(subData.second.meta, subData.first, subData.second, obj, subIndex);
}
else
loadSubObject(scope, subData.first, subData.second, obj);
loadSubObject(subData.second.meta, subData.first, subData.second, obj);
}
return obj;
}
@ -553,7 +553,7 @@ bool AObjectTypeHandler::hasNameTextID() const
std::string AObjectTypeHandler::getNameTextID() const
{
return TextIdentifier("mapObject", getTypeName(), getJsonKey(), "name").get();
return TextIdentifier("mapObject", modScope, typeName, subTypeName, "name").get();
}
std::string AObjectTypeHandler::getNameTranslated() const