diff --git a/@ExileServer/addons/a3_dms/scripts/FillCrate.sqf b/@ExileServer/addons/a3_dms/scripts/FillCrate.sqf index afba3d4..49e3b65 100644 --- a/@ExileServer/addons/a3_dms/scripts/FillCrate.sqf +++ b/@ExileServer/addons/a3_dms/scripts/FillCrate.sqf @@ -89,7 +89,7 @@ if ((_wepCount>0) && {count _weps>0}) then _weapon = _weps call BIS_fnc_selectRandom; _ammo = _weapon call DMS_selectMagazine; _box addWeaponCargoGlobal _weapon; - _box addMagazineCargoGlobal [_ammo, (4 + floor(random 3))]; + _box addItemCargoGlobal [_ammo, (4 + floor(random 3))]; }; };