aboutsummaryrefslogtreecommitdiff
path: root/src/game/ConfusedMovementGenerator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/ConfusedMovementGenerator.h')
-rw-r--r--src/game/ConfusedMovementGenerator.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/ConfusedMovementGenerator.h b/src/game/ConfusedMovementGenerator.h
index 34cc154279a..2ad5990214f 100644
--- a/src/game/ConfusedMovementGenerator.h
+++ b/src/game/ConfusedMovementGenerator.h
@@ -39,14 +39,14 @@ class TRINITY_DLL_SPEC ConfusedMovementGenerator
void Reset(T &);
bool Update(T &, const uint32 &);
- bool GetDestination(float &x, float &y, float &z) const
+ bool GetDestination(float &x, float &y, float &z) const
{
- if(i_destinationHolder.HasArrived()) return false;
+ if(i_destinationHolder.HasArrived()) return false;
i_destinationHolder.GetDestination(x,y,z);
return true;
}
- MovementGeneratorType GetMovementGeneratorType() { return CONFUSED_MOTION_TYPE; }
+ MovementGeneratorType GetMovementGeneratorType() { return CONFUSED_MOTION_TYPE; }
private:
void _InitSpecific(T &, bool &, bool &);
TimeTracker i_nextMoveTime;