ACE3/addons/sandbag/functions/fnc_canDeploy.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

23 lines
412 B
Plaintext

#include "..\script_component.hpp"
/*
* 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
*/
params ["_unit"];
if !("ACE_Sandbag_empty" in (_unit call EFUNC(common,uniqueItems))) exitWith {false};
_unit call EFUNC(common,canDig)