forked from teamnwah/openmw-tes3coop
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
637 B
C++
29 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);
|
|
}
|
|
}
|