From 6e755d05d867bfc7f82ee6ad5fba3bf1ced4430c Mon Sep 17 00:00:00 2001 From: Shauren Date: Wed, 6 Jul 2016 10:25:56 +0200 Subject: [PATCH] Typo fix --- src/server/game/Movement/PathGenerator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/game/Movement/PathGenerator.h b/src/server/game/Movement/PathGenerator.h index 47b0d997bb4..f91c64d4797 100644 --- a/src/server/game/Movement/PathGenerator.h +++ b/src/server/game/Movement/PathGenerator.h @@ -58,7 +58,7 @@ class PathGenerator // Calculate the path from owner to given destination // return: true if new path was calculated, false otherwise (no change needed) bool CalculatePath(float destX, float destY, float destZ, bool forceDest = false, bool straightLine = false); - bool IsInvalidDestinationZ(Unit const* target) const + bool IsInvalidDestinationZ(Unit const* target) const; // option setters - use optional void SetUseStraightPath(bool useStraightPath) { _useStraightPath = useStraightPath; }