Skip to content

Commit

Permalink
Merge pull request #6 from dongkui555/修复奥杜尔唤雷者上天入地BUG
Browse files Browse the repository at this point in the history
修复奥杜尔唤雷者上天入地BUG
  • Loading branch information
dongkui555 authored Jan 15, 2024
2 parents bba14b4 + f062e7f commit 80b62d2
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 80b62d2

Please sign in to comment.