aboutsummaryrefslogtreecommitdiff
path: root/src/game/WaypointMovementGenerator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/WaypointMovementGenerator.cpp')
-rw-r--r--src/game/WaypointMovementGenerator.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game/WaypointMovementGenerator.cpp b/src/game/WaypointMovementGenerator.cpp
index 576c1f0d26e..e1ce805aa0b 100644
--- a/src/game/WaypointMovementGenerator.cpp
+++ b/src/game/WaypointMovementGenerator.cpp
@@ -77,7 +77,10 @@ bool WaypointMovementGenerator<Creature>::GetDestination(float &x, float &y, flo
}
template<>
-bool WaypointMovementGenerator<Player>::GetDestination(float &x, float &y, float &z) const {}
+bool WaypointMovementGenerator<Player>::GetDestination(float &x, float &y, float &z) const
+{
+ return false;
+}
template<>
void WaypointMovementGenerator<Creature>::Reset(Creature &unit){}