1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-06 09:09:40 +02:00

Fixed several scenarios with incorrect scope for requesting identifiers

This commit is contained in:
Ivan Savenko
2022-12-21 12:58:40 +02:00
committed by Nordsoft91
parent 5f8cfadc4d
commit 23cb47b457
3 changed files with 3 additions and 3 deletions

View File

@@ -763,7 +763,7 @@ CSpell * CSpellHandler::loadFromJson(const std::string & scope, const JsonNode &
{
if(counteredSpell.second.Bool())
{
VLC->modh->identifiers.requestIdentifier(json.meta, counteredSpell.first, [=](si32 id)
VLC->modh->identifiers.requestIdentifier(counteredSpell.second.meta, counteredSpell.first, [=](si32 id)
{
spell->counteredSpells.push_back(SpellID(id));
});