Skip to content

Commit

Permalink
Medical - Fix fullHeal not resetting occluded meds (#10569)
Browse files Browse the repository at this point in the history
  • Loading branch information
LinkIsGrim authored Dec 18, 2024
1 parent 4916ec5 commit 62dd978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/medical_treatment/functions/fnc_fullHealLocal.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ _patient setVariable [VAR_BLOOD_VOL, DEFAULT_BLOOD_VOLUME, true];
};
} forEach GET_TOURNIQUETS(_patient);
_patient setVariable [VAR_TOURNIQUET, DEFAULT_TOURNIQUET_VALUES, true];
_patient setVariable [QGVAR(occludedMedications), nil, true];
_patient setVariable [QEGVAR(medical,occludedMedications), nil, true];

// Wounds and Injuries
_patient setVariable [VAR_OPEN_WOUNDS, createHashMap, true];
Expand Down

0 comments on commit 62dd978

Please sign in to comment.