Skip to content

Commit

Permalink
Fixed missing quotes in fn_vehicle_addInventory (#1173)
Browse files Browse the repository at this point in the history
  • Loading branch information
pool011 authored Apr 8, 2024
2 parents f40a2b1 + 70ac97d commit d69f3d7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions cScripts/functions/vehicle/fn_vehicle_addInventory.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ if (_vehicle iskindOf "cav_dragoon_base_F") then {

// 2 Stingers to distribute to 1 section.
["Box_NATO_WpsLaunch_F",
GET_CONTAINER(crate_stinger),
GET_CONTAINER("crate_stinger"),
_vehicle, nil, "MANPAD"
] call FUNC(createCargoCrate);

Expand Down Expand Up @@ -210,23 +210,23 @@ if (_vehicle iskindOf "MRAP_01_base_F") then {
["FlexibleTank_01_forest_F", _vehicle, true] call ace_cargo_fnc_loadItem; // Emergency Fuel Tank
// Vehicle Inventory
[_vehicle,
GET_CONTAINER(vehicle_strykerDragoon)
GET_CONTAINER("vehicle_strykerDragoon")
] call FUNC(setCargo);

// Supply Crate
["Box_NATO_Equip_F",
GET_CONTAINER(crate_strykerDragoon_resupply),
GET_CONTAINER("crate_strykerDragoon_resupply"),
_vehicle, nil, "Resupply Crate"
] call FUNC(createCargoCrate);

// 2 Stingers to distribute to 1 section.
["Box_NATO_WpsLaunch_F",
GET_CONTAINER(crate_stinger),
GET_CONTAINER("crate_stinger"),
_vehicle, nil, "MANPAD"
] call FUNC(createCargoCrate);

["Box_NATO_WpsLaunch_F",
GET_CONTAINER(crate_stinger),
GET_CONTAINER("crate_stinger"),
_vehicle, nil, "MANPAD"
] call FUNC(createCargoCrate);
};
Expand All @@ -242,12 +242,12 @@ if (_vehicle iskindOf "MRAP_01_base_F") then {

// Vehicle Inventory
[_vehicle,
GET_CONTAINER(vehicle_strykerDragoon)
GET_CONTAINER("vehicle_strykerDragoon")
] call FUNC(setCargo);

// Supply Crate
["Box_NATO_Equip_F",
GET_CONTAINER(crate_strykerDragoon_resupply),
GET_CONTAINER("crate_strykerDragoon_resupply"),
_vehicle, nil, "Resupply Crate"
] call FUNC(createCargoCrate);
};
Expand Down

0 comments on commit d69f3d7

Please sign in to comment.