Backblast - Fix damage disabled units receiving damage from backblast (#7505)

* Fix damage disabled units receiving damage from backblast

* Add variable check
This commit is contained in:
diwako 2020-02-07 20:27:40 +01:00 committed by GitHub
parent 10fa22ff24
commit 65e1601114
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,13 +56,14 @@ TRACE_3("cache",_overpressureAngle,_overpressureRange,_overpressureDamage);
// If the target is the ACE_player
if (_x == ACE_player) then {[_damage * 100] call BIS_fnc_bloodEffect};
TRACE_1("",isDamageAllowed _x);
if (isDamageAllowed _x && {_x getVariable [QEGVAR(medical,allowDamage), true]}) then {
if (isClass (configFile >> "CfgPatches" >> "ACE_Medical")) then {
[_x, _damage, "body", "backblast", _firer] call EFUNC(medical,addDamageToUnit);
} else {
TRACE_1("",isDamageAllowed _x);
if (!isDamageAllowed _x) exitWith {}; // Skip damage if not allowed
_x setDamage (damage _x + _damage);
};
};
#ifdef DEBUG_MODE_FULL
//Shows damage lines in green