ACE3/addons/medical_statemachine/functions/fnc_enteredStateDeath.sqf
SilentSpike 24846e6f74
Make state change status updates consistent (#6538)
State transitions call respective functions in the status component where unit variables and status are actually handled.
2018-08-25 16:40:22 +01:00

23 lines
452 B
Plaintext

#include "script_component.hpp"
/*
* Author: SilentSpike
* Handles a unit reaching the point of death (calls for a status update).
*
* Arguments:
* 0: The Unit <OBJECT>
*
* Return Value:
* None
*
* Public: No
*/
params ["_unit"];
// TODO: Probably also needs additional logic to deal with edge cases
// Send a local event before death
[QEGVAR(medical,death), [_unit]] call CBA_fnc_localEvent;
[_unit] call EFUNC(medical_status,setDead);