aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorshadowu@mail.bg <none@none>2008-12-11 05:50:31 +0200
committershadowu@mail.bg <none@none>2008-12-11 05:50:31 +0200
commit66de4c5358ccb868d18e64418bfd156999a173bf (patch)
tree947e8c805f8e9b5d194a1fc5f49630f26068c209 /src
parent39083f4ff837d23cc886338fc9bc74df90fe9613 (diff)
*Waypoint Movement Generator - fixed typo
--HG-- branch : trunk
Diffstat (limited to 'src')
-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){}