- try to lower max pathfinder nodes to see if it makes smoother game play

This commit is contained in:
Mark Vejvoda 2011-04-18 04:07:39 +00:00
parent 4b570b88db
commit 3617603fde
1 changed files with 2 additions and 2 deletions

View File

@ -40,8 +40,8 @@ namespace Glest{ namespace Game{
const int PathFinder::maxFreeSearchRadius = 10;
//const int PathFinder::pathFindNodesMax= 400;
int PathFinder::pathFindNodesAbsoluteMax = 800;
int PathFinder::pathFindNodesMax = 400;
int PathFinder::pathFindNodesAbsoluteMax = 900;
int PathFinder::pathFindNodesMax = 300;
const int PathFinder::pathFindRefresh = 10;
const int PathFinder::pathFindBailoutRadius = 20;