[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) PacketObjectLock::PacketObjectLock(RakNet::RakPeerInterface *peer) : WorldPacket(peer)
{ {
packetID = ID_OBJECT_LOCK; packetID = ID_OBJECT_LOCK;
hasCellData = true;
} }
void PacketObjectLock::Object(WorldObject &worldObject, bool send) void PacketObjectLock::Object(WorldObject &worldObject, bool send)