openmw-tes3coop/components/openmw-mp/Packets/Actor/PacketActorCellChange.cpp
Koncord 23684489da [General] Fix clang-tidy warning
Converting integer literal to bool, use bool literal instead
2018-07-03 02:50:21 +08:00

19 lines
509 B
C++

#include <components/openmw-mp/NetworkMessages.hpp>
#include <components/openmw-mp/Log.hpp>
#include "PacketActorCellChange.hpp"
using namespace mwmp;
PacketActorCellChange::PacketActorCellChange(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
{
packetID = ID_ACTOR_CELL_CHANGE;
}
void PacketActorCellChange::Actor(BaseActor &actor, bool send)
{
RW(actor.cell.mData, send, true);
RW(actor.cell.mName, send, true);
RW(actor.position, send, true);
RW(actor.direction, send, true);
}