mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-06 09:09:40 +02:00
fix ToW
This commit is contained in:
@@ -298,7 +298,7 @@ public:
|
||||
HORDE_2_UPGR, GRAIL, EXTRA_TOWN_HALL, EXTRA_CITY_HALL, EXTRA_CAPITOL,
|
||||
DWELL_FIRST=30, DWELL_LVL_2, DWELL_LVL_3, DWELL_LVL_4, DWELL_LVL_5, DWELL_LVL_6, DWELL_LAST=36,
|
||||
DWELL_UP_FIRST=37, DWELL_LVL_2_UP, DWELL_LVL_3_UP, DWELL_LVL_4_UP, DWELL_LVL_5_UP,
|
||||
DWELL_LVL_6_UP, DWELL_UP_LAST=43, DWELL_LVL_8=50, DWELL_LVL_8_UP=57,
|
||||
DWELL_LVL_6_UP, DWELL_UP_LAST=43, DWELL_LVL_8=150, DWELL_LVL_8_UP=151,
|
||||
|
||||
DWELL_LVL_1 = DWELL_FIRST,
|
||||
DWELL_LVL_7 = DWELL_LAST,
|
||||
@@ -337,7 +337,7 @@ public:
|
||||
if (it != tmp.end())
|
||||
return std::distance(tmp.begin(), it);
|
||||
}
|
||||
return -1;
|
||||
return (dwelling - DWELL_FIRST) % (GameConstants::CREATURES_PER_TOWN - 1);
|
||||
}
|
||||
|
||||
static int getUpgradedFromDwelling(BuildingIDBase dwelling)
|
||||
@@ -349,7 +349,7 @@ public:
|
||||
if (it != tmp.end())
|
||||
return i;
|
||||
}
|
||||
return -1;
|
||||
return (dwelling - DWELL_FIRST) / (GameConstants::CREATURES_PER_TOWN - 1);
|
||||
}
|
||||
|
||||
bool IsSpecialOrGrail() const
|
||||
|
||||
Reference in New Issue
Block a user