From 1a5a925a4ceccb8fac4fb43eaa3b67009f696c80 Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Wed, 10 Jul 2019 14:18:34 -0700 Subject: [PATCH] fix a typo --- interface/src/octree/SafeLanding.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/octree/SafeLanding.cpp b/interface/src/octree/SafeLanding.cpp index 88807fc577..80ca0e5398 100644 --- a/interface/src/octree/SafeLanding.cpp +++ b/interface/src/octree/SafeLanding.cpp @@ -213,7 +213,7 @@ bool SafeLanding::isEntityPhysicsReady(const EntityItemPointer& entity) { // INVALID = not known to workload // So any entity sorted into R3 or R4 is definitelyNotPhysical - bool definitelyNotPhysical = region == workload::Region::R2 || + bool definitelyNotPhysical = region == workload::Region::R3 || region == workload::Region::R4 || !entity->shouldBePhysical() || modelEntity->unableToLoadCollisionShape();