12345678910111213141516171819202122232425262728 |
- params ["_healer", "_patient"];
- private _openWounds = (_patient getVariable ["ace_medical_openWounds", []]);
- if (_openWounds isEqualTo []) exitWith {};
- _patient setVariable ["ace_medical_bandagedWounds", _openWounds, true];
- _patient setVariable ["ace_medical_openWounds", [], true];
- [_patient] call ace_medical_status_fnc_updateWoundBloodLoss;
- [_patient] call ace_medical_engine_fnc_updateDamageEffects;
- private _nearPlayers = (_patient nearEntities ["CAManBase", 6]) select {_x call ace_common_fnc_isPlayer};
- ["ace_interact_menu_clearConditionCaches", [], _nearPlayers] call CBA_fnc_targetEvent;
|