浏览代码

Merge pull request #1086 from vcmi/fix-mantis-2934

Mantis-2934: fix conditions to upgrade town in h3m format parser
Andrii Danylchenko 3 年之前
父节点
当前提交
8fc38c617f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/mapping/MapFormatH3M.cpp

+ 1 - 1
lib/mapping/MapFormatH3M.cpp

@@ -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);