Fix to issue #140
This commit is contained in:
parent
b34799e07c
commit
40117f5cf4
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue