ACE3/addons/sandbag/functions/fnc_canDeploy.sqf
jonpas b31abee4fd Sandbags surfaces update (#4971)
* Use private keyword, move surface blacklist to script_component.hpp

* Check height above terrain

* Add Tanoa surfaces, Check if in water

* Use 'dust' config entry to determine surface, Add common canDig (checks dustyness)

* Re-enable compile cache

* Revert to surface blacklist with dust as fallback

* Move surface blacklist to script_component because SQF validator complains
2017-03-15 10:11:37 -05:00

23 lines
382 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 items _unit) exitWith {false};
_unit call EFUNC(common,canDig)