mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
398 B
Plaintext
21 lines
398 B
Plaintext
|
#include "script_component.hpp"
|
||
|
/*
|
||
|
* Author: SilentSpike
|
||
|
* Resets the default state on a unit after respawning.
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: The Unit <OBJECT>
|
||
|
*
|
||
|
* Return Value:
|
||
|
* None
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
|
||
|
params ["_unit"];
|
||
|
|
||
|
// Statemachine only handles local units
|
||
|
if !(local _unit) exitWith {};
|
||
|
|
||
|
[_unit, EGVAR(medical,STATE_MACHINE), "Dead", "Default"] call CBA_statemachine_fnc_manualTransition;
|