diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/WaypointMovementGenerator.cpp | 5 |
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){} |