diff --git a/addons/explosives/CfgVehicles.hpp b/addons/explosives/CfgVehicles.hpp index 67da08df8e..3049251d36 100644 --- a/addons/explosives/CfgVehicles.hpp +++ b/addons/explosives/CfgVehicles.hpp @@ -42,7 +42,7 @@ class CfgVehicles { class ACE_Defuse { displayName = $STR_ACE_Explosives_Defuse; condition = QUOTE( [_player] call FUNC(canDefuse) ); - statement = QUOTE( [ARR_2(_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) ); diff --git a/addons/explosives/functions/fnc_openPlaceUI.sqf b/addons/explosives/functions/fnc_openPlaceUI.sqf index 6961bef808..b9404b5663 100644 --- a/addons/explosives/functions/fnc_openPlaceUI.sqf +++ b/addons/explosives/functions/fnc_openPlaceUI.sqf @@ -53,7 +53,7 @@ _actions = [localize "STR_ACE_Explosives_PlaceMenu", localize "STR_ACE_Explosive }, { call EFUNC(Interaction,hideMenu); - if !(profileNamespace getVariable [QUOTE( EGVAR(Interaction, AutoCloseMenu) ), false]) then { + if !(profileNamespace getVariable [QUOTE( EGVAR(Interaction,AutoCloseMenu) ), false]) then { "ACE_Explosives" call EFUNC(Interaction,openMenuSelf); }; } diff --git a/addons/explosives/functions/fnc_openTransmitterUI.sqf b/addons/explosives/functions/fnc_openTransmitterUI.sqf index 3cec06e34d..3d1e19063b 100644 --- a/addons/explosives/functions/fnc_openTransmitterUI.sqf +++ b/addons/explosives/functions/fnc_openTransmitterUI.sqf @@ -45,7 +45,7 @@ if (count _detonators == 0) then { }, { call EFUNC(Interaction,hideMenu); - if !(profileNamespace getVariable [QUOTE( EGVAR(Interaction, AutoCloseMenu) ), false]) then { + if !(profileNamespace getVariable [QUOTE( EGVAR(Interaction,AutoCloseMenu) ), false]) then { "ACE_Explosives" call EFUNC(Interaction,openMenuSelf); }; }