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