mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 18:23:54 +02:00
don't not kill NODE_TYPE_VOXEL_SERVER in removeSilentNodes
This commit is contained in:
parent
402ec86bd1
commit
67e5a6409e
1 changed files with 1 additions and 2 deletions
|
@ -472,8 +472,7 @@ void *removeSilentNodes(void *args) {
|
|||
|
||||
for(NodeList::iterator node = nodeList->begin(); node != nodeList->end(); ++node) {
|
||||
|
||||
if ((checkTimeUSecs - node->getLastHeardMicrostamp()) > NODE_SILENCE_THRESHOLD_USECS
|
||||
&& node->getType() != NODE_TYPE_VOXEL_SERVER) {
|
||||
if ((checkTimeUSecs - node->getLastHeardMicrostamp()) > NODE_SILENCE_THRESHOLD_USECS) {
|
||||
|
||||
qDebug() << "Killed" << *node << "\n";
|
||||
|
||||
|
|
Loading…
Reference in a new issue