fix controller-module run order so that equip works again

This commit is contained in:
Seth Alves 2019-11-20 09:48:52 -08:00
parent 67f4811c2b
commit 3f249dfcd8
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ Script.include("/~/system/libraries/controllerDispatcherUtils.js");
this.hand = hand;
this.disableModules = false;
this.parameters = makeDispatcherModuleParameters(
90,
82,
this.hand === RIGHT_HAND ?
["rightHand", "rightHandEquip", "rightHandTrigger"] :
["leftHand", "leftHandEquip", "leftHandTrigger"],

View file

@ -278,7 +278,7 @@ EquipHotspotBuddy.prototype.update = function(deltaTime, timestamp, controllerDa
this.handHasBeenRightsideUp = false;
this.parameters = makeDispatcherModuleParameters(
115,
85,
this.hand === RIGHT_HAND ? ["rightHand", "rightHandEquip"] : ["leftHand", "leftHandEquip"],
[],
100);