mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ab769757d9
Stuff Normalize Depends - Skip Glass Repair Fix spawned wheel/track not having correct damage getHitpointString robustness, hatchback fuelHitpoint, fix count errors - Formatting local -> private Fix Stuff
24 lines
517 B
Plaintext
24 lines
517 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Check if vehicle is a engineering vehicle.
|
|
*
|
|
* Arguments:
|
|
* 0: Vehicle <OBJECT>
|
|
*
|
|
* ReturnValue:
|
|
* Is engineering vehicle <BOOL>
|
|
*
|
|
* Example:
|
|
* [vehicle] call ace_repair_fnc_isRepairVehicle
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_vehicle"];
|
|
TRACE_1("params",_vehicle);
|
|
|
|
if (_vehicle isKindOf "CAManBase") exitWith {false};
|
|
|
|
((_vehicle getVariable ["ACE_isRepairVehicle", getNumber (configFile >> "CfgVehicles" >> typeOf _vehicle >> QGVAR(canRepair))]) > 0);
|