#include "script_component.hpp"
/*
 * Author: Glowbal
 * Check if vehicle is a engineering vehicle.
 *
 * Arguments:
 * 0: Vehicle <OBJECT>
 *
 * Return Value:
 * Is engineering vehicle <BOOL>
 *
 * Example:
 * [vehicle] call ace_repair_fnc_isRepairVehicle
 *
 * Public: Yes
 */

params ["_vehicle"];
TRACE_1("params",_vehicle);

if (_vehicle isKindOf "CAManBase") exitWith {false};

// Value can be integer or boolean
private _value = _vehicle getVariable ["ACE_isRepairVehicle", getNumber (configOf _vehicle >> QGVAR(canRepair))];
_value in [1, true] // return