ACE3/addons/medical_statemachine/functions/fnc_transitionSecondChance.sqf
Dedmen Miller 7a0a00ea09 Cleanup using SQFLint (#6485)
* Use private
* Fix wrong spacing
* Fix wrong variable being used
* Cleanup empty line after header
* ace_common_fnc_getCountOfItem
* Remove useless _return variable
* Naming
2018-08-02 15:02:10 +01:00

21 lines
399 B
Plaintext

#include "script_component.hpp"
/*
* Author: BaerMitUmlaut
* Gives the unit a second chance and prevents death for 1 second.
*
* Arguments:
* 0: The Unit <OBJECT>
*
* Return Value:
* None
*
* Public: No
*/
params ["_unit"];
_unit setVariable [QEGVAR(medical,deathBlocked), true];
[{
_this setVariable [QEGVAR(medical,deathBlocked), false];
}, _unit, 1] call CBA_fnc_waitAndExecute;