Skip to content

Commit

Permalink
actually stop the bleeeding
Browse files Browse the repository at this point in the history
  • Loading branch information
LinkIsGrim authored Feb 8, 2025
1 parent 2dd35f0 commit 99ed15a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/medical_status/functions/fnc_updateWoundBloodLoss.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ private _bodyPartBleeding = [0,0,0,0,0,0];
if (_tourniquets select _partIndex == 0) then {
private _partBleeding = 0;
{
_x params ["", "_amountOf", "_bleeeding"];
_partBleeding = _partBleeding + (_amountOf * _bleeeding);
_x params ["", "_amountOf", "_bleeding"];
_partBleeding = _partBleeding + (_amountOf * _bleeding);
} forEach _y;
_bodyPartBleeding set [_partIndex, _partBleeding];
};
Expand Down

0 comments on commit 99ed15a

Please sign in to comment.