Skip to content

Commit

Permalink
修复奥杜尔唤雷者上天入地BUG
Browse files Browse the repository at this point in the history
  • Loading branch information
dongkui555 committed Jan 15, 2024
1 parent 118434f commit f062e7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/game/Entities/Unit/Unit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -558,8 +558,8 @@ void Unit::SendMonsterMove(float NewPosX, float NewPosY, float NewPosZ, uint32 T
data << GetPackGUID();

data << uint8(0); // new in 3.1
data << GetPositionX() << GetPositionY() << GetPositionZ();
data << GameTime::GetGameTimeMS().count();
data << GetPositionX() << GetPositionY() << GetPositionZ() + GetHoverHeight();
data << uint32(GameTime::GetGameTimeMS().count());
data << uint8(0);
data << uint32(sf);
data << TransitTime; // Time in between points
Expand Down

0 comments on commit f062e7f

Please sign in to comment.