2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2016-03-21 17:25:38 +00:00
|
|
|
/*
|
|
|
|
* 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"];
|
|
|
|
|
2018-09-17 19:03:28 +00:00
|
|
|
if !("ACE_EntrenchingTool" in (_unit call EFUNC(common,uniqueItems))) exitWith {false};
|
2020-06-05 16:35:32 +00:00
|
|
|
if ((_trench getVariable [QGVAR(progress), 1]) >= 1) exitWith {false};
|
2016-03-21 17:25:38 +00:00
|
|
|
|
|
|
|
// Prevent removing/digging trench by more than one person
|
|
|
|
if (_trench getVariable [QGVAR(digging), false]) exitWith {false};
|
|
|
|
|
|
|
|
true
|