mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 21:49:55 +00:00
[Server] Send other players position to loader
This commit is contained in:
parent
b0ebad8b83
commit
68c288761a
1 changed files with 1 additions and 0 deletions
|
@ -185,6 +185,7 @@ void Networking::processPlayerPacket(RakNet::Packet *packet)
|
||||||
player->forEachLoaded([this](Player *pl, Player *other) {
|
player->forEachLoaded([this](Player *pl, Player *other) {
|
||||||
playerController->GetPacket(ID_PLAYER_DYNAMICSTATS)->Send(other, pl->guid);
|
playerController->GetPacket(ID_PLAYER_DYNAMICSTATS)->Send(other, pl->guid);
|
||||||
playerController->GetPacket(ID_PLAYER_ATTRIBUTE)->Send(other, pl->guid);
|
playerController->GetPacket(ID_PLAYER_ATTRIBUTE)->Send(other, pl->guid);
|
||||||
|
playerController->GetPacket(ID_PLAYER_POS)->Send(other, pl->guid);
|
||||||
playerController->GetPacket(ID_PLAYER_SKILL)->Send(other, pl->guid);
|
playerController->GetPacket(ID_PLAYER_SKILL)->Send(other, pl->guid);
|
||||||
playerController->GetPacket(ID_PLAYER_EQUIPMENT)->Send(other, pl->guid);
|
playerController->GetPacket(ID_PLAYER_EQUIPMENT)->Send(other, pl->guid);
|
||||||
playerController->GetPacket(ID_PLAYER_DRAWSTATE)->Send(other, pl->guid);
|
playerController->GetPacket(ID_PLAYER_DRAWSTATE)->Send(other, pl->guid);
|
||||||
|
|
Loading…
Reference in a new issue