mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Medical - Fix Handle Damage
{} were unmatched so nothing ran. I think this is just leftover from a merge.
This commit is contained in:
@ -87,15 +87,6 @@ if (_unit getVariable [QGVAR(preventInstaDeath), GVAR(preventInstaDeath)]) exitW
|
|||||||
[_unit] call EFUNC(common,unloadPerson);
|
[_unit] call EFUNC(common,unloadPerson);
|
||||||
};
|
};
|
||||||
|
|
||||||
if (_damageReturn >= 0.9 && {_selection in ["", "head", "body"]}) exitWith {
|
|
||||||
systemChat format["Lethal damage %1 ", _unit];
|
|
||||||
if (_unit getvariable ["ACE_isUnconscious", false]) exitwith {
|
|
||||||
[_unit] call FUNC(setDead);
|
|
||||||
0.89
|
|
||||||
};
|
|
||||||
[{
|
|
||||||
[_this select 0, true] call FUNC(setUnconscious);
|
|
||||||
}, [_unit]] call EFUNC(common,execNextFrame);
|
|
||||||
private "_delayedUnconsicous";
|
private "_delayedUnconsicous";
|
||||||
_delayedUnconsicous = false;
|
_delayedUnconsicous = false;
|
||||||
if (vehicle _unit != _unit and {damage (vehicle _unit) >= 1}) then {
|
if (vehicle _unit != _unit and {damage (vehicle _unit) >= 1}) then {
|
||||||
|
Reference in New Issue
Block a user