Files
ACE3/addons/minedetector/functions/fnc_hasDetector.sqf
2023-09-12 20:58:10 +02:00

21 lines
387 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Glowbal
* Check if unit has a mine detector in hands
*
* Arguments:
* 0: Unit <OBJECT>
*
* Return Value:
* Current weapon is a mine detector <BOOLEAN>
*
* Example:
* [ace_player] call ace_minedetector_fnc_hasDetector
*
* Public: No
*/
params ["_unit"];
([currentWeapon _unit] call FUNC(getDetectorConfig)) isNotEqualTo [];