ACE3/addons/medical_statemachine/functions/fnc_resetStateDefault.sqf
SilentSpike 7fcd12c792
Reset default state on respawn (#6518)
* Reset default state on respawn
* Remove old getUnitState function
* Add locality check
2018-08-12 10:14:48 +01:00

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;