mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
28 lines
617 B
Plaintext
28 lines
617 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: SzwedzikPL
|
|
* Checks if a unit can continue digging a trench
|
|
*
|
|
* Arguments:
|
|
* 0: trench <OBJECT>
|
|
* 1: unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Can continue <BOOL>
|
|
*
|
|
* Example:
|
|
* [TrenchObj, ACE_player] call ace_trenches_fnc_canContinueDiggingTrench
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_trench", "_unit"];
|
|
|
|
if !(_unit call FUNC(hasEntrenchingTool)) exitWith {false};
|
|
if ((_trench getVariable [QGVAR(progress), 1]) >= 1) exitWith {false};
|
|
|
|
// Prevent removing/digging trench by more than one person
|
|
if (_trench getVariable [QGVAR(digging), false]) exitWith {false};
|
|
|
|
true
|