mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
11 lines
259 B
Plaintext
11 lines
259 B
Plaintext
|
/**
|
||
|
* fn_hasItem.sqf
|
||
|
* @Descr: Check if unit has item
|
||
|
* @Author: Glowbal
|
||
|
*
|
||
|
* @Arguments: [unit OBJECT, item STRING (Classname of item)]
|
||
|
* @Return: BOOL
|
||
|
* @PublicAPI: true
|
||
|
*/
|
||
|
// item classname in items unit
|
||
|
((_this select 1) in items (_this select 0));
|