fnc_stitchAllWounds.sqf 397 B

12345678
  1. params["_healer","_patient"];
  2. private _bandagedWounds = _patient getVariable ["ace_medical_bandagedWounds", []];
  3. private _stitchedWounds = _patient getVariable ["ace_medical_stitchedWounds", []];
  4. _patient setVariable ["ace_medical_bandagedWounds", [], true];
  5. _patient setVariable ["ace_medical_stitchedWounds", _stitchedWounds, true];
  6. [_patient] call ace_medical_engine_fnc_updateDamageEffects;