mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
[10421] Correct typo in function name.
Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
parent
04b62bb9ee
commit
9700d481fa
4 changed files with 6 additions and 6 deletions
|
|
@ -395,12 +395,12 @@ void Unit::SendMonsterMoveWithSpeed(float x, float y, float z, uint32 transitTim
|
|||
if(GetTypeId()==TYPEID_PLAYER)
|
||||
{
|
||||
Traveller<Player> traveller(*(Player*)this);
|
||||
transitTime = traveller.GetTotalTrevelTimeTo(x, y, z);
|
||||
transitTime = traveller.GetTotalTravelTimeTo(x, y, z);
|
||||
}
|
||||
else
|
||||
{
|
||||
Traveller<Creature> traveller(*(Creature*)this);
|
||||
transitTime = traveller.GetTotalTrevelTimeTo(x, y, z);
|
||||
transitTime = traveller.GetTotalTravelTimeTo(x, y, z);
|
||||
}
|
||||
}
|
||||
//float orientation = (float)atan2((double)dy, (double)dx);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue