forked from mirror/openmw-tes3mp
[General] Fix copy-posty bug
This commit is contained in:
parent
9fe5b4a305
commit
f7473e3379
1 changed files with 5 additions and 7 deletions
|
@ -20,11 +20,6 @@ void PacketActorCellChange::Packet(RakNet::BitStream *bs, bool send)
|
|||
|
||||
RW(actorList->count, send);
|
||||
|
||||
RW(actorList->cell.mData.mFlags, send);
|
||||
RW(actorList->cell.mData.mX, send);
|
||||
RW(actorList->cell.mData.mY, send);
|
||||
RW(actorList->cell.mName, send);
|
||||
|
||||
BaseActor actor;
|
||||
|
||||
for (unsigned int i = 0; i < actorList->count; i++)
|
||||
|
@ -37,8 +32,11 @@ void PacketActorCellChange::Packet(RakNet::BitStream *bs, bool send)
|
|||
RW(actor.refNumIndex, send);
|
||||
RW(actor.mpNum, send);
|
||||
|
||||
RW(actor.position, send);
|
||||
RW(actor.direction, send);
|
||||
RW(actor.cell.mData, send, 1);
|
||||
RW(actor.cell.mName, send, 1);
|
||||
|
||||
RW(actor.position, send, 1);
|
||||
RW(actor.direction, send, 1);
|
||||
|
||||
if (!send)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue