1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-03 15:19:42 +00:00

[General] Fix ObjectLock packets by making hasCellData true for them

This commit is contained in:
David Cernat 2017-06-22 05:49:44 +03:00
parent 4ad87faac1
commit 48c63dbce9
3 changed files with 3 additions and 2 deletions

View file

@ -6,6 +6,7 @@ using namespace mwmp;
PacketObjectLock::PacketObjectLock(RakNet::RakPeerInterface *peer) : WorldPacket(peer)
{
packetID = ID_OBJECT_LOCK;
hasCellData = true;
}
void PacketObjectLock::Object(WorldObject &worldObject, bool send)