mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
interaction: fixed the modifier key
This commit is contained in:
parent
a4a4ca39f6
commit
9cf9733850
@ -2,6 +2,8 @@
|
||||
|
||||
#include "script_component.hpp"
|
||||
|
||||
ACE_Modifier = 0;
|
||||
|
||||
if (!hasInterface) exitWith {};
|
||||
|
||||
GVAR(isOpeningDoor) = false;
|
||||
|
@ -68,9 +68,9 @@ class ACE_Default_Keys {
|
||||
class modifierKey {
|
||||
displayName = "$STR_ACE_Interaction_ModifierKey";
|
||||
condition = "";
|
||||
statement = QUOTE(GVAR(Modifier) = 1;);
|
||||
statement = QUOTE(ACE_Modifier = 1;);
|
||||
conditionUp = "";
|
||||
statementUp = QUOTE(GVAR(Modifier) = 0;);
|
||||
statementUp = QUOTE(ACE_Modifier = 0;);
|
||||
exceptions[] = {"ACE_Drag_isNotDragging"};
|
||||
key = 29;
|
||||
shift = 0;
|
||||
@ -94,9 +94,6 @@ class ACE_Options {
|
||||
};
|
||||
};
|
||||
|
||||
class ACE_Parameters {
|
||||
ACE_Modifier = 0;
|
||||
};
|
||||
class ACE_Parameters_Boolean {
|
||||
ACE_Interaction_EnableTeamManagement = 1;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user