feat(Core/Compression): Move packets compression from map to network thread (#18602)
* feat(Code/Compression): Move packets compression from map to network thread. * Code style fix * Remove unicode letter
This commit is contained in:
parent
3ff8de2086
commit
73340b94e3
14 changed files with 122 additions and 118 deletions
|
|
@ -1739,7 +1739,7 @@ void Player::UpdateTriggerVisibility()
|
|||
if (!udata.HasData())
|
||||
return;
|
||||
|
||||
udata.BuildPacket(&packet);
|
||||
udata.BuildPacket(packet);
|
||||
GetSession()->SendPacket(&packet);
|
||||
}
|
||||
|
||||
|
|
@ -1791,7 +1791,7 @@ void Player::UpdateForQuestWorldObjects()
|
|||
}
|
||||
}
|
||||
|
||||
udata.BuildPacket(&packet);
|
||||
udata.BuildPacket(packet);
|
||||
GetSession()->SendPacket(&packet);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue