1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 21:49:55 +00:00

Set correct packetID for ID_WORLD_OBJECT_PLACE

This commit is contained in:
David Cernat 2016-10-23 12:53:49 +03:00
parent 2b98e349ce
commit d0027ae3e7

View file

@ -5,7 +5,7 @@ using namespace mwmp;
PacketObjectPlace::PacketObjectPlace(RakNet::RakPeerInterface *peer) : WorldPacket(peer)
{
packetID = ID_WORLD_OBJECT_DELETE;
packetID = ID_WORLD_OBJECT_PLACE;
}
void PacketObjectPlace::Packet(RakNet::BitStream *bs, WorldEvent *event, bool send)