summaryrefslogtreecommitdiff
path: root/src/game-server/map.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game-server/map.cpp')
-rw-r--r--src/game-server/map.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/game-server/map.cpp b/src/game-server/map.cpp
index e372f03d..b4e66e02 100644
--- a/src/game-server/map.cpp
+++ b/src/game-server/map.cpp
@@ -35,7 +35,11 @@ class PathInfo
{
public:
PathInfo()
- : whichList(0)
+ : Gcost(0)
+ , Hcost(0)
+ , whichList(0)
+ , parentX(0)
+ , parentY(0)
{}
int Gcost; /**< Cost from start to this location */