fix bug preventing taking of simulation ownership

This commit is contained in:
Andrew Meadows 2015-05-06 11:46:42 -07:00
parent 646661d037
commit f0c778a802

View file

@ -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;