mirror of
https://github.com/vcmi/vcmi.git
synced 2025-04-04 22:14:25 +02:00
Fixed small error in nearest town finding algorithm.
This commit is contained in:
parent
dd33fd51a8
commit
c676c5da82
@ -5596,11 +5596,11 @@ bool CGameHandler::castSpell(const CGHeroInstance *h, SpellID spellID, const int
|
|||||||
ObjectInstanceID nearest = town->id; //nearest town's ID
|
ObjectInstanceID nearest = town->id; //nearest town's ID
|
||||||
for(const CGTownInstance * currTown : gs->getPlayer(h->tempOwner)->towns)
|
for(const CGTownInstance * currTown : gs->getPlayer(h->tempOwner)->towns)
|
||||||
{
|
{
|
||||||
si32 curDist = currTown->pos.dist2dSQ(h->pos);
|
si32 currDist = currTown->pos.dist2dSQ(h->pos);
|
||||||
if (nearest == ObjectInstanceID() || curDist < dist)
|
if (currDist < dist)
|
||||||
{
|
{
|
||||||
nearest = town->id;
|
nearest = currTown->id;
|
||||||
dist = curDist;
|
dist = currDist;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (town->id != nearest)
|
if (town->id != nearest)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user