diff options
author | QAston <none@none> | 2009-06-23 14:21:14 +0200 |
---|---|---|
committer | QAston <none@none> | 2009-06-23 14:21:14 +0200 |
commit | 09a4fdc1c7c5c515f6414834fdafefa38af2a3d6 (patch) | |
tree | 7d900c68a77c0acf9fcb78bfcf3105b446cdff56 /src | |
parent | c5413dc4626ee927a99598e2ce45be7b0f5edc96 (diff) |
[8066] Fixed typo in Teleport call. Author: Ambal
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Player.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Player.h b/src/game/Player.h index b838449b24f..c3328d0ebd7 100644 --- a/src/game/Player.h +++ b/src/game/Player.h @@ -856,7 +856,7 @@ class TRINITY_DLL_SPEC Player : public Unit bool TeleportTo(WorldLocation const &loc, uint32 options = 0) { - return TeleportTo(loc.mapid, loc.coord_x, loc.coord_y, loc.coord_z, options); + return TeleportTo(loc.mapid, loc.coord_x, loc.coord_y, loc.coord_z, loc.orientation, options); } void SetSummonPoint(uint32 mapid, float x, float y, float z) |