diff --git a/addons/explosives/CfgACE_Triggers.hpp b/addons/explosives/CfgACE_Triggers.hpp index 15707c685c..a09f56a995 100644 --- a/addons/explosives/CfgACE_Triggers.hpp +++ b/addons/explosives/CfgACE_Triggers.hpp @@ -37,7 +37,7 @@ class CfgACE_Triggers { class Timer { displayName = $STR_ACE_Explosives_timerName; picture = "ACE_Explosives\data\UI\Timer.paa"; - onPlace = QUOTE( [_this select 1, (_this select 3) select 0] call FUNC(startTimer);false ); + onPlace = QUOTE( [ARR_2(_this select 1, (_this select 3) select 0)] call FUNC(startTimer);false ); onSetup = QUOTE( _this call FUNC(openTimerSetUI);true ); }; class Tripwire { diff --git a/addons/explosives/CfgVehicles.hpp b/addons/explosives/CfgVehicles.hpp index 9db2590306..86b1afccc6 100644 --- a/addons/explosives/CfgVehicles.hpp +++ b/addons/explosives/CfgVehicles.hpp @@ -10,7 +10,7 @@ class CfgVehicles { class ACE_SelfActions { class GVAR(Explosives) { displayName = $STR_ACE_Explosives_Menu; - condition = QUOTE( !(_player getVariable [QGVAR(PlantingExplosive), false]) ); + condition = QUOTE( !(_player getVariable [ARR_2(QGVAR(PlantingExplosive), false)]) ); statement = ""; exceptions[] = {"ACE_Interaction_isNotSwimming"}; \ showDisabled = 1; @@ -42,7 +42,7 @@ class CfgVehicles { class ACE_Defuse { displayName = $STR_ACE_Explosives_Defuse; condition = QUOTE( [_player] call FUNC(canDefuse) ); - statement = QUOTE( [_player, EGVAR(Interaction, Target)] call FUNC(startDefuse); ); + statement = QUOTE( [ARR_2(_player, EGVAR(Interaction, Target))] call FUNC(startDefuse); ); exceptions[] = {"ACE_Interaction_isNotSwimming"}; \ showDisabled = 0; icon = QUOTE( PATHTOF(UI\Defuse_ca.paa) );