diff --git a/addons/attributes/initAttributes.inc.sqf b/addons/attributes/initAttributes.inc.sqf index 692def3ee..bb4ae9cb3 100644 --- a/addons/attributes/initAttributes.inc.sqf +++ b/addons/attributes/initAttributes.inc.sqf @@ -49,6 +49,7 @@ private _damage = 1 - _value; { _x setDamage _damage; + [QEGVAR(common,setDamage), [_x, _damage], _x] call CBA_fnc_targetEvent; } forEach SELECTED_OBJECTS; }, {1 - damage _entity}, diff --git a/addons/context_actions/functions/fnc_repairVehicles.sqf b/addons/context_actions/functions/fnc_repairVehicles.sqf index 442dee461..708c577c9 100644 --- a/addons/context_actions/functions/fnc_repairVehicles.sqf +++ b/addons/context_actions/functions/fnc_repairVehicles.sqf @@ -24,4 +24,5 @@ private _vehicles = _this select { { _x setDamage 0; + [QEGVAR(common,setDamage), [_x, _damage], _x] call CBA_fnc_targetEvent; } forEach _vehicles;