From f0c778a802cd939a4cea8762c8c624adc67c1603 Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Wed, 6 May 2015 11:46:42 -0700 Subject: [PATCH] fix bug preventing taking of simulation ownership --- libraries/physics/src/EntityMotionState.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/physics/src/EntityMotionState.h b/libraries/physics/src/EntityMotionState.h index 23cb64d3fc..737dc5b81c 100644 --- a/libraries/physics/src/EntityMotionState.h +++ b/libraries/physics/src/EntityMotionState.h @@ -47,7 +47,7 @@ public: void sendUpdate(OctreeEditPacketSender* packetSender, uint32_t step); void setShouldClaimSimulationOwnership(bool value) { _shouldClaimSimulationOwnership = value; } - bool getShouldClaimSimulationOwnership() { return false; } + bool getShouldClaimSimulationOwnership() { return _shouldClaimSimulationOwnership; } virtual uint32_t getAndClearIncomingDirtyFlags() const;