ACE3/addons/sandbag/functions/fnc_canDeploy.sqf
mharis001 803d497d8a Improve checking of unit items (#6350)
* Add uniqueItems function

* Optimize dogtag children actions function

* Optimize getDetonators item search

* Store CfgWeapons lookup in getDetonators

* Update items to use new function

* Update items to use new function 2

* More optimization of uniqueItems function

* Update items to use new function 3
2018-09-17 14:03:28 -05:00

23 lines
409 B
Plaintext

/*
* Author: Ruthberg, commy2
* Checks if the player can deploy a sandbag.
*
* Arguments:
* 0: Unit <OBJECT>
*
* Return Value:
* Can deploy <BOOL>
*
* Example:
* [ACE_player] call ace_sandbag_fnc_canDeploy
*
* Public: No
*/
#include "script_component.hpp"
params ["_unit"];
if !("ACE_Sandbag_empty" in (_unit call EFUNC(common,uniqueItems))) exitWith {false};
_unit call EFUNC(common,canDig)