Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions addons/common/functions/fnc_addToInventory.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,13 @@ switch (_type select 0) do {

switch (_container) do {
case "vest": {
_unit addItemToVest _classname; //@todo Bug! A full magazine, ignoring ammo. No such command.
(vestContainer _unit) addMagazineAmmoCargo [_classname, 1, _ammoCount];
};
case "backpack": {
_unit addItemToBackpack _classname; //@todo Bug! A full magazine, ignoring ammo. No such command.
(backpackContainer _unit) addMagazineAmmoCargo [_classname, 1, _ammoCount];
};
case "uniform": {
_unit addItemToUniform _classname; //@todo Bug! A full magazine, ignoring ammo. No such command.
(uniformContainer _unit) addMagazineAmmoCargo [_classname, 1, _ammoCount];
};
default {
_unit addMagazine [_classname, _ammoCount];
Expand All @@ -130,7 +130,7 @@ switch (_type select 0) do {
private _pos = _unit modelToWorldVisual [0,1,0.05];

_unit = createVehicle ["WeaponHolder_Single_F", _pos, [], 0, "NONE"];
Comment thread
johnb432 marked this conversation as resolved.
_unit addMagazineCargoGlobal [_classname, 1/*_ammoCount*/]; //@todo Bug! This isn't really the ammo, but magazine count. No such command.
_unit addMagazineAmmoCargo [_classname, 1, _ammoCount];
_unit setPosATL _pos;
};
};
Expand Down