mirror of
https://github.com/mangosfour/server.git
synced 2025-12-17 16:37:00 +00:00
[8066] Fixed typo in Teleport call.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
8f69f19027
commit
c402d3ec26
2 changed files with 2 additions and 2 deletions
|
|
@ -885,7 +885,7 @@ class MANGOS_DLL_SPEC Player : public Unit
|
||||||
|
|
||||||
bool TeleportTo(WorldLocation const &loc, uint32 options = 0)
|
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)
|
void SetSummonPoint(uint32 mapid, float x, float y, float z)
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "8065"
|
#define REVISION_NR "8066"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue