mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 14:58:03 +02:00
fix controller-module run order so that equip works again
This commit is contained in:
parent
67f4811c2b
commit
3f249dfcd8
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ Script.include("/~/system/libraries/controllerDispatcherUtils.js");
|
||||||
this.hand = hand;
|
this.hand = hand;
|
||||||
this.disableModules = false;
|
this.disableModules = false;
|
||||||
this.parameters = makeDispatcherModuleParameters(
|
this.parameters = makeDispatcherModuleParameters(
|
||||||
90,
|
82,
|
||||||
this.hand === RIGHT_HAND ?
|
this.hand === RIGHT_HAND ?
|
||||||
["rightHand", "rightHandEquip", "rightHandTrigger"] :
|
["rightHand", "rightHandEquip", "rightHandTrigger"] :
|
||||||
["leftHand", "leftHandEquip", "leftHandTrigger"],
|
["leftHand", "leftHandEquip", "leftHandTrigger"],
|
||||||
|
|
|
@ -278,7 +278,7 @@ EquipHotspotBuddy.prototype.update = function(deltaTime, timestamp, controllerDa
|
||||||
this.handHasBeenRightsideUp = false;
|
this.handHasBeenRightsideUp = false;
|
||||||
|
|
||||||
this.parameters = makeDispatcherModuleParameters(
|
this.parameters = makeDispatcherModuleParameters(
|
||||||
115,
|
85,
|
||||||
this.hand === RIGHT_HAND ? ["rightHand", "rightHandEquip"] : ["leftHand", "leftHandEquip"],
|
this.hand === RIGHT_HAND ? ["rightHand", "rightHandEquip"] : ["leftHand", "leftHandEquip"],
|
||||||
[],
|
[],
|
||||||
100);
|
100);
|
||||||
|
|
Loading…
Reference in a new issue