1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-10-31 00:07:39 +02:00

Fix handling of artifacts in Seer Huts on HotA maps

Fixed bug that caused artifacts in Pandora Boxes, Seer Huts/Border
guards quests, and Seer Hut rewards fail to load, resulting in
potentially broken map objects
This commit is contained in:
Ivan Savenko
2025-10-27 21:18:41 +02:00
parent 6b4179af86
commit 21d3f690b8

View File

@@ -1100,6 +1100,8 @@ void CMapLoaderH3M::readBoxContent(CGPandoraBox * object, const int3 & mapPositi
SpellID scrollSpell = reader->readSpell16();
if (grantedArtifact == ArtifactID::SPELL_SCROLL)
reward.grantedScrolls.push_back(scrollSpell);
else
reward.grantedArtifacts.push_back(grantedArtifact);
}
else
reward.grantedArtifacts.push_back(grantedArtifact);
@@ -2306,6 +2308,8 @@ void CMapLoaderH3M::readSeerHutQuest(CGSeerHut * hut, const int3 & position, con
SpellID scrollSpell = reader->readSpell16();
if (grantedArtifact == ArtifactID::SPELL_SCROLL)
reward.grantedScrolls.push_back(scrollSpell);
else
reward.grantedArtifacts.push_back(grantedArtifact);
}
else
reward.grantedArtifacts.push_back(grantedArtifact);
@@ -2381,6 +2385,8 @@ EQuestMission CMapLoaderH3M::readQuest(IQuestObject * guard, const int3 & positi
SpellID scrollSpell = reader->readSpell16();
if (requiredArtifact == ArtifactID::SPELL_SCROLL)
guard->getQuest().mission.scrolls.push_back(scrollSpell);
else
guard->getQuest().mission.artifacts.push_back(requiredArtifact);
}
else
guard->getQuest().mission.artifacts.push_back(requiredArtifact);