Fix to issue

This commit is contained in:
Andrettin 2015-11-21 23:31:37 +01:00
parent b34799e07c
commit 40117f5cf4

View file

@ -356,7 +356,7 @@ bool CBuildRestrictionOnTop::Check(const CUnit *builder, const CUnitType &, cons
if (it != cache.end() && (*it)->tilePos == pos) {
CUnit &found = **it;
std::vector<CUnit *> table;
Vec2i endPos(found.tilePos.x + found.Type->TileWidth, found.tilePos.y + found.Type->TileHeight);
Vec2i endPos(found.tilePos.x + found.Type->TileWidth - 1, found.tilePos.y + found.Type->TileHeight - 1);
Select(found.tilePos, endPos, table);
for (std::vector<CUnit *>::iterator it2 = table.begin(); it2 != table.end(); ++it2) {
if (*it == *it2) {