From d0d407a2c5d3b007cb0bb7fcde9123b87dd3c481 Mon Sep 17 00:00:00 2001 From: commy2 Date: Sat, 13 Aug 2016 12:39:52 +0200 Subject: [PATCH] only do engine burning effect if cookoff is enabled --- addons/grenades/functions/fnc_incendiary.sqf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/grenades/functions/fnc_incendiary.sqf b/addons/grenades/functions/fnc_incendiary.sqf index e3534aac48..308daa0d10 100644 --- a/addons/grenades/functions/fnc_incendiary.sqf +++ b/addons/grenades/functions/fnc_incendiary.sqf @@ -168,6 +168,8 @@ if ("ace_cookoff" call EFUNC(common,isModLoaded)) then { if (_position distance _enginePosition < EFFECT_SIZE * 2) then { _vehicle setHit [_engineSelection, 1]; - _vehicle call EFUNC(cookoff,engineFire); + if (EGVAR(cookoff,enable)) then { + _vehicle call EFUNC(cookoff,engineFire); + }; }; };