diff --git a/libraries/entities/src/EntityScriptingInterface.cpp b/libraries/entities/src/EntityScriptingInterface.cpp index edace784ad..b42ca4045d 100644 --- a/libraries/entities/src/EntityScriptingInterface.cpp +++ b/libraries/entities/src/EntityScriptingInterface.cpp @@ -218,17 +218,6 @@ QUuid EntityScriptingInterface::addEntity(const EntityItemProperties& properties } } - if (_bidOnSimulationOwnership) { - // This Node is creating a new object. If it's in motion, set this Node as the simulator. - auto nodeList = DependencyManager::get(); - const QUuid myNodeID = nodeList->getSessionUUID(); - - // and make note of it now, so we can act on it right away. - propertiesWithSimID.setSimulationOwner(myNodeID, SCRIPT_POKE_SIMULATION_PRIORITY); - entity->setSimulationOwner(myNodeID, SCRIPT_POKE_SIMULATION_PRIORITY); - entity->rememberHasSimulationOwnershipBid(); - } - entity->setLastBroadcast(usecTimestampNow()); propertiesWithSimID.setLastEdited(entity->getLastEdited()); } else {