From a648223a9df8e2fd4b4464411884019049cd051b Mon Sep 17 00:00:00 2001 From: IT07 Date: Sun, 22 May 2016 16:07:37 +0200 Subject: [PATCH] Fixed AI dropping from sky --- exile_vemf_reloaded/functions/fn_loadInv.sqf | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/exile_vemf_reloaded/functions/fn_loadInv.sqf b/exile_vemf_reloaded/functions/fn_loadInv.sqf index af69784..c62cee5 100644 --- a/exile_vemf_reloaded/functions/fn_loadInv.sqf +++ b/exile_vemf_reloaded/functions/fn_loadInv.sqf @@ -67,6 +67,10 @@ if (_this isEqualType []) then _gear = selectRandom _uniforms; _unit forceAddUniform _gear; // Give the poor naked guy some clothing :) }; + if (_missionName isEqualTo "BaseAttack") then + { + _unit addBackpack "B_Parachute"; + }; _gear = selectRandom _headGear; _unit addHeadGear _gear; _gear = selectRandom _vests; @@ -79,9 +83,6 @@ if (_this isEqualType []) then { _gear = selectRandom _backpacks; _unit addBackpack _gear; - } else - { - _unit addBackpack "B_Parachute"; }; _gear = selectRandom _launchers; _unit addWeapon _gear;