diff --git a/interface/src/avatar/Hand.cpp b/interface/src/avatar/Hand.cpp index aec55d1579..bbd7527a0b 100755 --- a/interface/src/avatar/Hand.cpp +++ b/interface/src/avatar/Hand.cpp @@ -299,6 +299,9 @@ void Hand::updateCollisions() { palm.setIsCollidingWithPalm(false); for (int j = 0; j < getNumPalms(); j++) { PalmData& otherPalm = otherAvatar->getHand().getPalms()[j]; + if (!otherPalm.isActive()) { + continue; + } glm::vec3 otherPalmPosition = otherPalm.getPosition(); if (glm::length(otherPalmPosition - myPalmPosition) < palmCollisionDistance) { palm.setIsCollidingWithPalm(true);