summaryrefslogtreecommitdiff
path: root/src/game-server/map.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game-server/map.hpp')
-rw-r--r--src/game-server/map.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game-server/map.hpp b/src/game-server/map.hpp
index b0840b2c..000913c5 100644
--- a/src/game-server/map.hpp
+++ b/src/game-server/map.hpp
@@ -171,8 +171,8 @@ class Map
/**
* Find a path from one location to the next.
*/
- std::list<PATH_NODE>
- findPath(int startX, int startY, int destX, int destY, int maxCost = 20);
+ std::list<PATH_NODE> findPath(int startX, int startY,
+ int destX, int destY, int maxCost = 20);
private:
int width, height;