|
@@ -7,7 +7,7 @@ if (isNull _projectile) then {
|
|
|
};
|
|
|
private _config = configFile >> "CfgAmmo" >> _ammo;
|
|
|
private _deployable = getNumber (_config >> "rd501_fired_deployable");
|
|
|
-
|
|
|
+private _direction = direction _unit;
|
|
|
if (_deployable == 1) then {
|
|
|
[
|
|
|
{
|
|
@@ -16,12 +16,12 @@ if (_deployable == 1) then {
|
|
|
!(isNil "_projectile") && (alive _projectile) && _speed <= 0.1
|
|
|
},
|
|
|
{
|
|
|
- params["_projectile", "_ammo"];
|
|
|
+ params["_projectile", "_ammo", "_direction"];
|
|
|
private _position = getPosATL _projectile;
|
|
|
- ["rd501_fired_deployable_deployServer", [_ammo, _position]] call CBA_fnc_serverEvent;
|
|
|
+ ["rd501_fired_deployable_deployServer", [_ammo, _position, _direction]] call CBA_fnc_serverEvent;
|
|
|
deleteVehicle _projectile;
|
|
|
},
|
|
|
- [_projectile, _ammo, _magazine, _unit],
|
|
|
+ [_projectile, _ammo, _magazine, _unit, _direction],
|
|
|
10,
|
|
|
{
|
|
|
params["", "", "_magazine", "_unit"];
|