Quellcode durchsuchen

Merge pull request #1218 from IvanSavenko/pathfinder_fix

[1.1] Do not allow attacking from inaccessible tiles
Andrii Danylchenko vor 3 Jahren
Ursprung
Commit
0016b77192
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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;
 		}