ACE3/addons/trenches/functions/fnc_canDigTrench.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
394 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Ruthberg, commy2, esteldunedain
* Checks if a unit can dig a trench.
*
* Arguments:
* 0: Unit <OBJECT>
*
* Return Value:
* Can dig <BOOL>
*
* Example:
* [ACE_player] call ace_trenches_fnc_canDigTrench
*
* Public: No
*/
params ["_unit"];
if !(_unit call FUNC(hasEntrenchingTool)) exitWith {false};
_unit call EFUNC(common,canDig)