mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
508e669e05
* Add support for other entrenching tools * Docs * Remove unused variable * Check unit weapons for entrenching tool `weapons` returns weapons in weapon slots and from all containers. * Update addons/trenches/README.md Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com> * Support for shovel Backpacks * Update XEH_preStart.sqf * Add Arsenal "Entrenching Tool" stat Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com>
23 lines
391 B
Plaintext
23 lines
391 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)
|