[8066] Fixed typo in Teleport call.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
Ambal 2009-06-22 13:40:54 +04:00 committed by VladimirMangos
parent 8f69f19027
commit c402d3ec26
2 changed files with 2 additions and 2 deletions

View file

@ -885,7 +885,7 @@ class MANGOS_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)

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "8065"
#define REVISION_NR "8066"
#endif // __REVISION_NR_H__