From e92ea533858fb1de0584fbe256a3356f00d5fbea Mon Sep 17 00:00:00 2001 From: GhostIsSpooky <69561145+Salluci@users.noreply.github.com> Date: Sun, 10 Oct 2021 19:34:28 -0300 Subject: [PATCH] Medical - Return tourniquets after PAK (#8419) --- addons/medical_treatment/functions/fnc_fullHealLocal.sqf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/addons/medical_treatment/functions/fnc_fullHealLocal.sqf b/addons/medical_treatment/functions/fnc_fullHealLocal.sqf index b1e64afa42..0a1c498d41 100644 --- a/addons/medical_treatment/functions/fnc_fullHealLocal.sqf +++ b/addons/medical_treatment/functions/fnc_fullHealLocal.sqf @@ -36,6 +36,11 @@ _patient setVariable [VAR_PAIN, 0, true]; _patient setVariable [VAR_BLOOD_VOL, DEFAULT_BLOOD_VOLUME, true]; // Tourniquets +{ + if (_x != 0) then { + [_patient, "ACE_tourniquet"] call EFUNC(common,addToInventory); + }; +} forEach GET_TOURNIQUETS(_patient); _patient setVariable [VAR_TOURNIQUET, DEFAULT_TOURNIQUET_VALUES, true]; _patient setVariable [QGVAR(occludedMedications), nil, true];