Skip to content

Commit

Permalink
Update fnc_woundsHandlerBase.sqf
Browse files Browse the repository at this point in the history
  • Loading branch information
Cplhardcore committed Nov 16, 2024
1 parent 263fbca commit ef08054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/medical_damage/functions/fnc_woundsHandlerBase.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ private _bodyPartVisParams = [_unit, false, false, false, false]; // params arra
// Create a new injury. Format [0:classComplex, 1:amountOf, 2:bleedingRate, 3:woundDamage]
private _injury = [_classComplex, 1, _bleeding, _woundDamage];

if (_bodyPart in ["head", "body", "neck", "head"] && {_woundDamage > PENETRATION_THRESHOLD}) then {
if (_bodyPart in ["head", "body", "neck", "chest"] && {_woundDamage > PENETRATION_THRESHOLD}) then {
_criticalDamage = true;
};
if ([_unit, _bodyPartNToAdd, _bodyPartDamage, _woundDamage] call FUNC(determineIfFatal)) then {
Expand Down

0 comments on commit ef08054

Please sign in to comment.