From c83a8e9a2525e1b289eaf748f6760c19039afc56 Mon Sep 17 00:00:00 2001 From: Dante Ruiz Date: Mon, 26 Feb 2018 14:51:36 -0800 Subject: [PATCH] minimize diff --- libraries/entities/src/EntityScriptingInterface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/entities/src/EntityScriptingInterface.cpp b/libraries/entities/src/EntityScriptingInterface.cpp index 760bd1c965..12ac9f5246 100644 --- a/libraries/entities/src/EntityScriptingInterface.cpp +++ b/libraries/entities/src/EntityScriptingInterface.cpp @@ -1313,7 +1313,7 @@ QUuid EntityScriptingInterface::addAction(const QString& actionTypeString, action->setIsMine(true); success = entity->addAction(simulation, action); entity->flagForOwnershipBid(SCRIPT_GRAB_SIMULATION_PRIORITY); - return false; // Physics will cause a packet to be sent, so don't send from here + return false; // Physics will cause a packet to be sent, so don't send from here. }); if (success) { return actionID; @@ -1344,7 +1344,7 @@ bool EntityScriptingInterface::deleteAction(const QUuid& entityID, const QUuid& // reduce from grab to poke entity->flagForOwnershipBid(SCRIPT_POKE_SIMULATION_PRIORITY); } - return false; // Physics will cause a packet to be sent, so don't send from here + return false; // Physics will cause a packet to be sent, so don't send from here. }); return success; }