1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 05:19:55 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Actor/PacketActorDeath.cpp
David Cernat 09da24f1ea [General] Rename all instances of refNumIndex into refNum
This creates symmetry with mpNum and should cause less confusion in the future.
2018-07-13 04:12:03 +03:00

28 lines
637 B
C++

#include <components/openmw-mp/NetworkMessages.hpp>
#include <components/openmw-mp/Log.hpp>
#include "PacketActorDeath.hpp"
using namespace mwmp;
PacketActorDeath::PacketActorDeath(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
{
packetID = ID_ACTOR_DEATH;
}
void PacketActorDeath::Actor(BaseActor &actor, bool send)
{
RW(actor.killer.isPlayer, send);
if (actor.killer.isPlayer)
{
RW(actor.killer.guid, send);
}
else
{
RW(actor.killer.refId, send, true);
RW(actor.killer.refNum, send);
RW(actor.killer.mpNum, send);
RW(actor.killer.name, send, true);
}
}