Skip to content

Commit

Permalink
Dogtags - Drop dogtag on ground if unit doesn't have inventory space (#…
Browse files Browse the repository at this point in the history
…10094)

* Drop dogtag on ground if unit doesn't have inventory space

* Only allow taking of dogtags if unit has space
  • Loading branch information
johnb432 committed Jul 2, 2024
1 parent 71afce5 commit ba47c12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion addons/dogtags/functions/fnc_addDogtagItem.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ params ["_item", "_dogtagData"];

if (_item == "") exitWith {};

[ace_player, _item] call CBA_fnc_addItem;
// Verify that the unit has inventory space, otherwise drop the dogtag on the ground
[ace_player, _item, true] call CBA_fnc_addItem;

_dogtagData params ["_nickName"];
private _displayText = format [localize LSTRING(takeDogtagSuccess), _nickName];
Expand Down
2 changes: 1 addition & 1 deletion addons/dogtags/functions/fnc_canTakeDogtag.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ if (isNull _target) exitWith {false};
// check if disabled for faction
if ((faction _target) in GVAR(disabledFactions)) exitWith {false};

(!alive _target) || {_target getVariable ["ACE_isUnconscious", false]}
((!alive _target) || {_target getVariable ["ACE_isUnconscious", false]}) && {_player canAdd ["ACE_dogtag", 1/*, true*/]} // Todo: Uncomment in 2.18

0 comments on commit ba47c12

Please sign in to comment.