mirror of
https://github.com/vcmi/vcmi.git
synced 2025-04-13 11:40:38 +02:00
[844] - fix pathfinding for fly towards guarded tile
This commit is contained in:
parent
c9eec47304
commit
a25d0198a9
@ -620,10 +620,11 @@ void LayerTransitionRule::process(
|
|||||||
destination.blocked = true;
|
destination.blocked = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(source.node->accessible != CGPathNode::ACCESSIBLE && destination.node->accessible != CGPathNode::ACCESSIBLE)
|
else if(destination.node->accessible != CGPathNode::ACCESSIBLE)
|
||||||
{
|
{
|
||||||
/// Hero that fly can only land on accessible tiles
|
/// Hero that fly can only land on accessible tiles
|
||||||
destination.blocked = true;
|
if(!destination.isGuardianTile && destination.nodeObject)
|
||||||
|
destination.blocked = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user