diff options
Diffstat (limited to 'src/game/Player.h')
-rw-r--r-- | src/game/Player.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Player.h b/src/game/Player.h index 53005250160..c00cba0ea2a 100644 --- a/src/game/Player.h +++ b/src/game/Player.h @@ -1982,9 +1982,9 @@ class TRINITY_DLL_SPEC Player : public Unit void EnterVehicle(Vehicle *vehicle); void ExitVehicle(Vehicle *vehicle); - void SetMover(Unit* target) { CreateViewpoint(target); m_mover = target; } + void SetMover(Unit* target) { m_mover = target; } void SetSeer(WorldObject *target) { m_seer = target; } - void CreateViewpoint(WorldObject *target); + void SetViewpoint(WorldObject *target, bool apply); WorldObject* GetViewpoint() const; void StopCastingCharm(); void StopCastingBindSight(); |