diff options
author | megamage <none@none> | 2009-04-06 20:40:18 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-04-06 20:40:18 -0500 |
commit | 8c97e8b78718ba4fa5573fa07af496a388299227 (patch) | |
tree | 859a80c6827034c9d4d04d26fac4787d0e425017 /src/game/MotionMaster.cpp | |
parent | 9b908e4014de8d4ef428c74f94c480405160cfa7 (diff) | |
parent | ac4edf0e091f0a1e0b49ae39201183613f3453ad (diff) |
*Merge.
--HG--
branch : trunk
Diffstat (limited to 'src/game/MotionMaster.cpp')
-rw-r--r-- | src/game/MotionMaster.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/MotionMaster.cpp b/src/game/MotionMaster.cpp index 6dcf2d0e214..d4199c2099e 100644 --- a/src/game/MotionMaster.cpp +++ b/src/game/MotionMaster.cpp @@ -525,9 +525,9 @@ void MotionMaster::DelayedDelete(_Ty curr) bool MotionMaster::GetDestination(float &x, float &y, float &z) { - if(empty()) + if(empty()) return false; - - return top()->GetDestination(x,y,z); + + return top()->GetDestination(x,y,z); } |