From 9c3e957d4e5490f4e794aaccce6a5e0f7878b3a6 Mon Sep 17 00:00:00 2001 From: KimLS Date: Wed, 13 Jan 2016 13:57:35 -0800 Subject: [PATCH] Fix for pathfind.h --- common/pathfind.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/pathfind.h b/common/pathfind.h index e037b388c..725a284a4 100644 --- a/common/pathfind.h +++ b/common/pathfind.h @@ -50,7 +50,7 @@ public: ~PathfindingRoute(); bool Active() const { return m_active; } - bool PathfindingRoute::DestinationValid(const glm::vec3 &dest); + bool DestinationValid(const glm::vec3 &dest); void CalcCurrentNode(const glm::vec3 ¤t_pos, bool &wp_changed); const PathfindingNode& GetCurrentNode() { return m_nodes[m_current_node]; } unsigned short GetPreviousNodeFlag();