mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Medical Treatment - Remove early exit when stitching with sutures (#9243)
This commit is contained in:
parent
0e26755b88
commit
45af0cdca0
@ -83,9 +83,7 @@ if (
|
||||
};
|
||||
|
||||
// Consume a suture for the next wound if one exists, stop stitching if none are left
|
||||
if (GVAR(consumeSurgicalKit) == 2) then {
|
||||
// Don't consume a suture if there are no more wounds to stitch
|
||||
if (_bandagedWoundsOnPart isEqualTo []) exitWith {false};
|
||||
if (GVAR(consumeSurgicalKit) == 2 && {_bandagedWoundsOnPart isNotEqualTo []}) then {
|
||||
([_medic, _patient, ["ACE_suture"]] call FUNC(useItem)) params ["_user"];
|
||||
!isNull _user
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user