1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-21 00:19:29 +02:00

IdentifierStorage is now separate handler in VLC

This commit is contained in:
Ivan Savenko
2023-08-25 22:36:00 +03:00
parent c8a6cd74cc
commit 7e27ac7073
8 changed files with 34 additions and 55 deletions

View File

@ -23,7 +23,7 @@ std::string IHandlerBase::getScopeBuiltin()
void IHandlerBase::registerObject(const std::string & scope, const std::string & type_name, const std::string & name, si32 index)
{
return VLC->modh->getIdentifiers().registerObject(scope, type_name, name, index);
return VLC->identifiersHandler->registerObject(scope, type_name, name, index);
}
VCMI_LIB_NAMESPACE_END