diff options
Diffstat (limited to 'src/resources/map')
-rw-r--r-- | src/resources/map/map.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/resources/map/map.cpp b/src/resources/map/map.cpp index d86360059..2b6dd070b 100644 --- a/src/resources/map/map.cpp +++ b/src/resources/map/map.cpp @@ -975,12 +975,14 @@ Path Map::findPath(const int startX, const int startY, ++Gcost; } +/* // It costs extra to walk through a being (needs to be enough // to make it more attractive to walk around). -// if (occupied(x, y)) -// { -// Gcost += 3 * basicCost; -// } + if (occupied(x, y)) + { + Gcost += 3 * basicCost; + } +*/ // Skip if Gcost becomes too much // Warning: probably not entirely accurate |