ACE3/addons/medical_ai/functions/fnc_wasRequested.sqf
Neviothr 75f7ed7532
Utilize isNotEqualTo (#7929)
* Utilize isNotEqualTo

* undo changes to some files

* redo some changes, fix based on @Vdauphin 's comment

* fix validator issues

Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2021-02-27 11:05:05 -06:00

20 lines
357 B
Plaintext

#include "script_component.hpp"
/*
* 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
*/
private _healQueue = _this getVariable [QGVAR(healQueue), []];
(_healQueue isNotEqualTo [])