From b352983348cf8727a40d56e46bfc12a9653a2090 Mon Sep 17 00:00:00 2001 From: David Cernat Date: Wed, 27 Nov 2019 11:18:08 +0200 Subject: [PATCH] [General] Include actor refIds in ActorDeath packets --- components/openmw-mp/Packets/Actor/PacketActorDeath.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/openmw-mp/Packets/Actor/PacketActorDeath.cpp b/components/openmw-mp/Packets/Actor/PacketActorDeath.cpp index b64e74fdd..e9bdbee5a 100644 --- a/components/openmw-mp/Packets/Actor/PacketActorDeath.cpp +++ b/components/openmw-mp/Packets/Actor/PacketActorDeath.cpp @@ -11,6 +11,8 @@ PacketActorDeath::PacketActorDeath(RakNet::RakPeerInterface *peer) : ActorPacket void PacketActorDeath::Actor(BaseActor &actor, bool send) { + RW(actor.refId, send); + RW(actor.killer.isPlayer, send); if (actor.killer.isPlayer)