mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ffaa195fe5
* Fixed headers to work with silentspike python script * Fixed rest of the files * Fixed ace-team
20 lines
355 B
Plaintext
20 lines
355 B
Plaintext
/*
|
|
* Author: BaerMitUmlaut
|
|
* Checks if the unit was requested to treat another unit.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* Was requested <BOOL>
|
|
*
|
|
* Example:
|
|
* call ACE_medical_ai_fnc_wasRequested
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private _healQueue = _this getVariable [QGVAR(healQueue), []];
|
|
!(_healQueue isEqualTo [])
|