mirror of
https://github.com/overte-org/overte.git
synced 2025-04-24 12:13:36 +02:00
check version against version in OPP
This commit is contained in:
parent
7a48463f4e
commit
3d6b246782
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ void OctreePacketProcessor::processPacket(QSharedPointer<NLPacket> packet, Share
|
|||
PacketType::Value packetType = packet->getType();
|
||||
|
||||
// check version of piggyback packet against expected version
|
||||
if (packetType != versionForPacketType(packet->getType())) {
|
||||
if (packet->getVersion() != versionForPacketType(packet->getType())) {
|
||||
static QMultiMap<QUuid, PacketType::Value> versionDebugSuppressMap;
|
||||
|
||||
const QUuid& senderUUID = packet->getSourceID();
|
||||
|
|
Loading…
Reference in a new issue