1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-10-11 17:46:34 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Object/PacketObjectTrap.cpp

20 lines
578 B
C++

#include <components/openmw-mp/NetworkMessages.hpp>
#include "PacketObjectTrap.hpp"
using namespace mwmp;
PacketObjectTrap::PacketObjectTrap(RakNet::RakPeerInterface *peer) : ObjectPacket(peer)
{
packetID = ID_OBJECT_TRAP;
hasCellData = true;
}
void PacketObjectTrap::Object(BaseObject &baseObject, bool send)
{
ObjectPacket::Object(baseObject, send);
RW(baseObject.trapSpellId, send, true);
RW(baseObject.trapAction, send);
if (baseObject.trapAction == mwmp::BaseObjectList::TRAP_ACTION::TRIGGER)
RW(baseObject.trapTriggerPosition, send);
}