mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
347 B
Plaintext
22 lines
347 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Deactivate the mine detector
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [] call ace_minedetector_fnc_deactivateDetector
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
if (call FUNC(canDeactivateDetector)) then {
|
|
[ACE_player, currentWeapon ACE_player] call FUNC(disableDetector);
|
|
};
|