Skip to content

Commit d69f3d7

Browse files
authored
Fixed missing quotes in fn_vehicle_addInventory (#1173)
2 parents f40a2b1 + 70ac97d commit d69f3d7

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

cScripts/functions/vehicle/fn_vehicle_addInventory.sqf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ if (_vehicle iskindOf "cav_dragoon_base_F") then {
109109

110110
// 2 Stingers to distribute to 1 section.
111111
["Box_NATO_WpsLaunch_F",
112-
GET_CONTAINER(crate_stinger),
112+
GET_CONTAINER("crate_stinger"),
113113
_vehicle, nil, "MANPAD"
114114
] call FUNC(createCargoCrate);
115115

@@ -210,23 +210,23 @@ if (_vehicle iskindOf "MRAP_01_base_F") then {
210210
["FlexibleTank_01_forest_F", _vehicle, true] call ace_cargo_fnc_loadItem; // Emergency Fuel Tank
211211
// Vehicle Inventory
212212
[_vehicle,
213-
GET_CONTAINER(vehicle_strykerDragoon)
213+
GET_CONTAINER("vehicle_strykerDragoon")
214214
] call FUNC(setCargo);
215215

216216
// Supply Crate
217217
["Box_NATO_Equip_F",
218-
GET_CONTAINER(crate_strykerDragoon_resupply),
218+
GET_CONTAINER("crate_strykerDragoon_resupply"),
219219
_vehicle, nil, "Resupply Crate"
220220
] call FUNC(createCargoCrate);
221221

222222
// 2 Stingers to distribute to 1 section.
223223
["Box_NATO_WpsLaunch_F",
224-
GET_CONTAINER(crate_stinger),
224+
GET_CONTAINER("crate_stinger"),
225225
_vehicle, nil, "MANPAD"
226226
] call FUNC(createCargoCrate);
227227

228228
["Box_NATO_WpsLaunch_F",
229-
GET_CONTAINER(crate_stinger),
229+
GET_CONTAINER("crate_stinger"),
230230
_vehicle, nil, "MANPAD"
231231
] call FUNC(createCargoCrate);
232232
};
@@ -242,12 +242,12 @@ if (_vehicle iskindOf "MRAP_01_base_F") then {
242242

243243
// Vehicle Inventory
244244
[_vehicle,
245-
GET_CONTAINER(vehicle_strykerDragoon)
245+
GET_CONTAINER("vehicle_strykerDragoon")
246246
] call FUNC(setCargo);
247247

248248
// Supply Crate
249249
["Box_NATO_Equip_F",
250-
GET_CONTAINER(crate_strykerDragoon_resupply),
250+
GET_CONTAINER("crate_strykerDragoon_resupply"),
251251
_vehicle, nil, "Resupply Crate"
252252
] call FUNC(createCargoCrate);
253253
};

0 commit comments

Comments
 (0)