From 02333644dc5fc71421200725e28a7d4251c03ba7 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Wed, 29 May 2013 15:31:18 -0700 Subject: [PATCH] one line fix in AvatarTouch --- interface/src/AvatarTouch.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/interface/src/AvatarTouch.cpp b/interface/src/AvatarTouch.cpp index 93899c8400..644c802d1f 100644 --- a/interface/src/AvatarTouch.cpp +++ b/interface/src/AvatarTouch.cpp @@ -54,8 +54,7 @@ void AvatarTouch::simulate (float deltaTime) { facingEachOther = true; } - if ((distanceBetweenBodies < _reachableRadius) - && (facingEachOther)) { + if (distanceBetweenBodies < _reachableRadius) { _canReachToOtherAvatar = true; _vectorBetweenHands = _yourHandPosition - _myHandPosition;