forked from mirror/openmw-tes3mp
[Server] Exchange position information correctly between players
This commit is contained in:
parent
ed91f20cd3
commit
3e031faa96
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ void Networking::processPlayerPacket(RakNet::Packet *packet)
|
||||||
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_SKILL)->Send(other, pl->guid);
|
playerController->GetPacket(ID_PLAYER_SKILL)->Send(other, pl->guid);
|
||||||
playerController->GetPacket(ID_PLAYER_POS)->Send(pl, pl->guid);
|
playerController->GetPacket(ID_PLAYER_POS)->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_ATTACK)->Send(other, pl->guid);
|
playerController->GetPacket(ID_PLAYER_ATTACK)->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