ACE3/addons/repair/functions/fnc_doFullRepair.sqf
Ozan Eğitmen ff1247daef Change "Remove Wheel" Action's Color Based on Damage (#5415)
* Change repair action's colors on wheels

* Add dots.
2017-08-10 13:32:55 +02:00

23 lines
378 B
Plaintext

/*
* Author: Glowbal
* Fully repairs vehicle.
*
* Arguments:
* 0: Unit that does the repairing (not used) <OBJECT>
* 1: Vehicle to repair <OBJECT>
*
* Return Value:
* None
*
* Example:
* [unit, vehicle] call ace_repair_fnc_doFullRepair
*
* Public: No
*/
#include "script_component.hpp"
params ["", "_vehicle"];
TRACE_1("params",_vehicle);
_vehicle setDamage 0;