Skip to content

Commit

Permalink
Merge pull request #3211 from jaj22/fix-swapped-RF-helis
Browse files Browse the repository at this point in the history
Fix swapped RF armed and unarmed helis
  • Loading branch information
Bob-Murphy authored Apr 10, 2024
2 parents b844fc9 + 95822e4 commit 75b07ce
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ if ("orange" in A3A_enabledDLC) then {
};
if ("rf" in A3A_enabledDLC) then {
_vehiclesPolice append ["a3a_police_Pickup_rf", "B_GEN_Pickup_covered_rf", "a3a_police_Pickup_comms_rf"];
_HelisTransport append ["B_Heli_light_03_unarmed_RF","B_Heli_EC_03_RF"];
_vehiclesHelisLightAttack append ["a3a_Heli_light_03_dynamicLoadout_RF","B_Heli_EC_04_military_RF"];
_HelisTransport append ["B_Heli_light_03_unarmed_RF","B_Heli_EC_04_military_RF"];
_vehiclesHelisLightAttack append ["a3a_Heli_light_03_dynamicLoadout_RF","B_Heli_EC_03_RF"];
};
["vehiclesHelisLightAttack", _vehiclesHelisLightAttack] call _fnc_saveToTemplate;
["vehiclesPolice", _vehiclesPolice] call _fnc_saveToTemplate;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ if ("orange" in A3A_enabledDLC) then {
};
if ("rf" in A3A_enabledDLC) then {
_vehiclesPolice append ["a3a_police_Pickup_rf", "B_GEN_Pickup_covered_rf", "a3a_police_Pickup_comms_rf"];
_HelisTransport append ["B_Heli_light_03_unarmed_RF","B_Heli_EC_03_RF"];
_vehiclesHelisLightAttack append ["a3a_Heli_light_03_dynamicLoadout_RF","B_Heli_EC_04_military_RF"];
_HelisTransport append ["B_Heli_light_03_unarmed_RF","B_Heli_EC_04_military_RF"];
_vehiclesHelisLightAttack append ["a3a_Heli_light_03_dynamicLoadout_RF","B_Heli_EC_03_RF"];
};
["vehiclesHelisLightAttack", _vehiclesHelisLightAttack] call _fnc_saveToTemplate;
["vehiclesPolice", _vehiclesPolice] call _fnc_saveToTemplate;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ if ("orange" in A3A_enabledDLC) then {
};
if ("rf" in A3A_enabledDLC) then {
_vehiclesPolice append ["a3a_police_Pickup_rf", "B_GEN_Pickup_covered_rf", "a3a_police_Pickup_comms_rf"];
_HelisTransport append ["B_Heli_light_03_unarmed_RF","B_Heli_EC_03_RF"];
_vehiclesHelisLightAttack append ["a3a_Heli_light_03_dynamicLoadout_RF","B_Heli_EC_04_military_RF"];
_HelisTransport append ["B_Heli_light_03_unarmed_RF","B_Heli_EC_04_military_RF"];
_vehiclesHelisLightAttack append ["a3a_Heli_light_03_dynamicLoadout_RF","B_Heli_EC_03_RF"];
};
["vehiclesHelisLightAttack", _vehiclesHelisLightAttack] call _fnc_saveToTemplate;
["vehiclesPolice", _vehiclesPolice] call _fnc_saveToTemplate;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ if ("orange" in A3A_enabledDLC) then {
};
if ("rf" in A3A_enabledDLC) then {
_vehiclesPolice append ["a3a_police_Pickup_rf", "B_GEN_Pickup_covered_rf", "a3a_police_Pickup_comms_rf"];
_HelisTransport append ["B_Heli_light_03_unarmed_RF","B_Heli_EC_03_RF"];
_vehiclesHelisLightAttack append ["a3a_Heli_light_03_dynamicLoadout_RF","B_Heli_EC_04_military_RF"];
_HelisTransport append ["B_Heli_light_03_unarmed_RF","B_Heli_EC_04_military_RF"];
_vehiclesHelisLightAttack append ["a3a_Heli_light_03_dynamicLoadout_RF","B_Heli_EC_03_RF"];
};
["vehiclesHelisLightAttack", _vehiclesHelisLightAttack] call _fnc_saveToTemplate;
["vehiclesPolice", _vehiclesPolice] call _fnc_saveToTemplate;
Expand Down

0 comments on commit 75b07ce

Please sign in to comment.