ACE3/addons/fire/functions/fnc_medical_canPatDown.sqf
johnb432 f45dff8a09
Fire - Mini-Rewrite (#9757)
Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com>
Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
2024-06-22 15:07:36 -03:00

22 lines
361 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: tcvm
* Returns if unit can pat down fire or not.
*
* Arguments:
* 0: Medic (not used) <OBJECT>
* 1: Patient <OBJECT>
*
* Return Value:
* Can Pat-Down <BOOL>
*
* Example:
* [nil, player] call ace_fire_fnc_medical_canPatDown
*
* Public: No
*/
params ["", "_patient"];
_patient call FUNC(isBurning)