소스 검색

Fix missmatched params

m3ales 4 년 전
부모
커밋
51e6b4d396
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      addons - Copy/RD501_Main/functions/fired_deployable/fnc_fired_deployable_firedHandler.sqf

+ 2 - 1
addons - Copy/RD501_Main/functions/fired_deployable/fnc_fired_deployable_firedHandler.sqf

@@ -8,6 +8,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,7 +17,7 @@ if (_deployable == 1) then {
 			!(isNil "_projectile") && (alive _projectile) && _speed <= 0.1
 		},
 		{
-			params["_projectile", "_ammo", "_direction"];
+			params["_projectile", "_ammo", "", "", "_direction"];
 			private _position = getPosATL _projectile;
 			["rd501_fired_deployable_deployServer", [_ammo, _position, _direction]] call CBA_fnc_serverEvent;
 			deleteVehicle _projectile;