Browse Source

Merge pull request #1218 from IvanSavenko/pathfinder_fix

[1.1] Do not allow attacking from inaccessible tiles
Andrii Danylchenko 2 years ago
parent
commit
0016b77192
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/CPathfinder.cpp

+ 1 - 1
lib/CPathfinder.cpp

@@ -625,7 +625,7 @@ void LayerTransitionRule::process(
 		else if(destination.node->accessible != CGPathNode::ACCESSIBLE)
 		{
 			/// Hero that fly can only land on accessible tiles
-			if(!destination.isGuardianTile && destination.nodeObject)
+			if(destination.nodeObject)
 				destination.blocked = true;
 		}