mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-26 22:57:00 +02:00
Merge pull request #1086 from vcmi/fix-mantis-2934
Mantis-2934: fix conditions to upgrade town in h3m format parser
This commit is contained in:
commit
8fc38c617f
@ -400,7 +400,7 @@ void CMapLoaderH3M::readVictoryLossConditions()
|
||||
EventExpression::OperatorAll oper;
|
||||
EventCondition cond(EventCondition::HAVE_BUILDING);
|
||||
cond.position = readInt3();
|
||||
cond.objectType = BuildingID::VILLAGE_HALL + reader.readUInt8();
|
||||
cond.objectType = BuildingID::TOWN_HALL + reader.readUInt8();
|
||||
oper.expressions.push_back(cond);
|
||||
cond.objectType = BuildingID::FORT + reader.readUInt8();
|
||||
oper.expressions.push_back(cond);
|
||||
|
Loading…
Reference in New Issue
Block a user