From 68c288761a3b9fce9713d0fd46e486bcbb8c1cb9 Mon Sep 17 00:00:00 2001 From: Koncord Date: Wed, 22 Feb 2017 16:56:09 +0800 Subject: [PATCH] [Server] Send other players position to loader --- apps/openmw-mp/Networking.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/openmw-mp/Networking.cpp b/apps/openmw-mp/Networking.cpp index d3dc064b5..fded0c3e1 100644 --- a/apps/openmw-mp/Networking.cpp +++ b/apps/openmw-mp/Networking.cpp @@ -185,6 +185,7 @@ void Networking::processPlayerPacket(RakNet::Packet *packet) player->forEachLoaded([this](Player *pl, Player *other) { playerController->GetPacket(ID_PLAYER_DYNAMICSTATS)->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_EQUIPMENT)->Send(other, pl->guid); playerController->GetPacket(ID_PLAYER_DRAWSTATE)->Send(other, pl->guid);