mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Common - Fix script error in fnc_getVehicleCargo (#9156)
* Update fnc_getVehicleCargo.sqf Close #9155 * change var name Co-Authored-By: commy2 <6576312+commy2@users.noreply.github.com> --------- Co-authored-by: commy2 <6576312+commy2@users.noreply.github.com>
This commit is contained in:
parent
fbe23ee45f
commit
19e88aa8e7
@ -15,15 +15,16 @@
|
||||
* Public: Yes
|
||||
*/
|
||||
|
||||
params [["_vehicle", objNull, [objNull]]];
|
||||
params [["_classname", "", [""]]];
|
||||
|
||||
private _config = configOf _vehicle;
|
||||
private _config = configFile >> "CfgVehicles" >> _classname;
|
||||
if (isNull _config) then { ERROR_1("ace_common_fnc_getVehicleCargo bad classname %1",_this); };
|
||||
|
||||
private _cargo = [];
|
||||
private _codrivers = getArray (_config >> "cargoIsCoDriver");
|
||||
|
||||
for "_index" from 0 to (getNumber (_config >> "transportSoldier") - 1) do {
|
||||
if !(_index in _codrivers && {_vehicle isKindOf "Car"} && {!(_vehicle isKindOf "Wheeled_APC_F")}) then {
|
||||
if !(_index in _codrivers && {_classname isKindOf "Car"} && {!(_classname isKindOf "Wheeled_APC_F")}) then {
|
||||
_cargo pushBack _index;
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user