ACE3/addons/laser/functions/fnc_handleLaserOff.sqf

9 lines
224 B
Plaintext
Raw Normal View History

//fnc_handleLaserOff.sqf
#include "script_component.hpp"
private ["_uuid"];
2016-05-30 16:37:03 +00:00
_uuid = _this select 0;
2016-07-30 15:16:29 +00:00
if ([GVAR(laserEmitters), _uuid] call CBA_fnc_hashHasKey) then {
[GVAR(laserEmitters), _uuid] call CBA_fnc_hashRem;
2016-05-30 16:37:03 +00:00
};