Skip to content

Commit 948f4d5

Browse files
authored
Medical Damage - Readd interrupting of wound handling (#11359)
Readd interrupting of wound handling
1 parent 0280930 commit 948f4d5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

addons/medical_damage/functions/fnc_woundReceived.sqf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ private _lastHandlerName = _woundHandlers select -1 select 0; // will usually be
3737
TRACE_2("Wound handler returned",_damageData,_handlerName);
3838

3939
// Done
40-
if (_handlerName == _lastHandlerName) then {
40+
if (_handlerName == _lastHandlerName || {_damageData isEqualTo []}) then {
41+
TRACE_2("Wound handling done",_damageData,_handlerName);
4142
break;
4243
};
4344

0 commit comments

Comments
 (0)