diff --git a/addons/explosives/functions/fnc_canDefuse.sqf b/addons/explosives/functions/fnc_canDefuse.sqf index e69ac41dac..be114bf072 100644 --- a/addons/explosives/functions/fnc_canDefuse.sqf +++ b/addons/explosives/functions/fnc_canDefuse.sqf @@ -4,7 +4,7 @@ * * Arguments: * 0: Unit - * 0: Target + * 0: Target (ACE_DefuseObject) * * Return Value: * Able to defuse @@ -19,15 +19,16 @@ params ["_unit", "_target"]; TRACE_2("params",_unit,_target); -private ["_isSpecialist"]; - -if (isNull(_target getVariable [QGVAR(Explosive),objNull])) exitWith { +private _explosive = _target getVariable [QGVAR(Explosive), objNull]; +if (isNull _explosive) exitWith { deleteVehicle _target; false }; if (vehicle _unit != _unit || {!("ACE_DefusalKit" in (items _unit))}) exitWith {false}; -_isSpecialist = [_unit] call EFUNC(Common,isEOD); -if (GVAR(RequireSpecialist) && {!_isSpecialist}) exitWith {false}; +if (GVAR(RequireSpecialist) && {!([_unit] call EFUNC(Common,isEOD))}) exitWith {false}; + +//Handle the naval mines (which doens't get turned into items when defused): +if ((_explosive isKindOf "UnderwaterMine_Range_Ammo") && {!mineActive _explosive}) exitWith {false}; true diff --git a/addons/explosives/functions/fnc_defuseExplosive.sqf b/addons/explosives/functions/fnc_defuseExplosive.sqf index 97c1f59a1d..b98b992f8e 100644 --- a/addons/explosives/functions/fnc_defuseExplosive.sqf +++ b/addons/explosives/functions/fnc_defuseExplosive.sqf @@ -25,12 +25,5 @@ if (GVAR(ExplodeOnDefuse) && {(random 1.0) < (getNumber (ConfigFile >> "CfgAmmo" [QGVAR(explodeOnDefuse), [_explosive, _unit]] call CBA_fnc_globalEvent; }; +_unit action ["Deactivate", _unit, _explosive]; [QGVAR(defuse), [_explosive, _unit]] call CBA_fnc_globalEvent; - -if (!(_explosive isKindOf "UnderwaterMine_Range_Ammo")) then { - _unit action ["Deactivate", _unit, _explosive]; -} else { - // Underwater naval mines don't seem to respond to the deactivate action - // For now, lets just delete them - deleteVehicle _explosive; -};