From 56b005a872ea5ac2c0a0cbbc6b2711ff09092bda Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Mon, 20 Apr 2015 12:19:36 -0700 Subject: [PATCH] packets should be ignore if they contain local nodeID, not if local entity contains nodeID --- libraries/entities/src/EntityTreeElement.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libraries/entities/src/EntityTreeElement.cpp b/libraries/entities/src/EntityTreeElement.cpp index a94891ea7e..60b6c93483 100644 --- a/libraries/entities/src/EntityTreeElement.cpp +++ b/libraries/entities/src/EntityTreeElement.cpp @@ -745,7 +745,8 @@ int EntityTreeElement::readElementDataFromBuffer(const unsigned char* data, int EntityTreeElement* currentContainingElement = _myTree->getContainingElement(entityItemID); // this Node was the original source of this packet, so read it, but ignore it. - bool shouldIgnore = (entityItem && entityItem->getSimulatorID() == myNodeID); + // bool shouldIgnore = (entityItem && entityItem->getSimulatorID() == myNodeID); XXX + bool shouldIgnore = false; bytesForThisEntity = entityItem->readEntityDataFromBuffer(dataAt, bytesLeftToRead, args, shouldIgnore); if (entityItem->getDirtyFlags()) {