mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 18:23:54 +02:00
added processNackPacket calls to DatagramProcessor
This commit is contained in:
parent
18a9d74b88
commit
4d84e1fff1
1 changed files with 6 additions and 0 deletions
|
@ -145,6 +145,12 @@ void DatagramProcessor::processDatagrams() {
|
|||
}
|
||||
break;
|
||||
}
|
||||
case PacketTypeVoxelEditNack:
|
||||
application->_voxelEditSender.processNackPacket(incomingPacket);
|
||||
case PacketTypeParticleEditNack:
|
||||
application->_particleEditSender.processNackPacket(incomingPacket);
|
||||
case PacketTypeModelEditNack:
|
||||
application->_modelEditSender.processNackPacket(incomingPacket);
|
||||
default:
|
||||
nodeList->processNodeData(senderSockAddr, incomingPacket);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue