1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-17 00:07:41 +02:00

- found yet another missing victory condition, fixes 1684

This commit is contained in:
Ivan Savenko
2014-02-02 11:05:05 +00:00
parent fabbe1eae8
commit 94a6e02107
2 changed files with 41 additions and 2 deletions

View File

@ -141,7 +141,7 @@ boost::optional<si32> CIdentifierStorage::getIdentifier(const JsonNode & name, b
if (idList.size() == 1)
return idList.front().id;
if (!silent)
logGlobal->errorStream() << "Failed to resolve identifier " << name.String() << " from mod " << pair2.first;
logGlobal->errorStream() << "Failed to resolve identifier " << name.String() << " from mod " << name.meta;
return boost::optional<si32>();
}