fixing adjusting equipped entities

This commit is contained in:
Dante Ruiz 2017-11-30 14:49:06 -08:00
parent 8eb8cb0994
commit db374b8c6d

View file

@ -81,7 +81,8 @@ Script.include("/~/system/libraries/cloneEntityUtils.js");
};
this.otherHandIsParent = function(props) {
return this.getOtherModule().thisHandIsParent(props);
var otherModule = this.getOtherModule();
return (otherModule.thisHandIsParent(props) && otherModule.grabbing);
};
this.startNearParentingGrabEntity = function (controllerData, targetProps) {