From 6860bed1ff36c73f0d901d56567bf8938b788567 Mon Sep 17 00:00:00 2001 From: commy2 Date: Fri, 13 May 2016 19:19:19 +0200 Subject: [PATCH] use 'call' instead of 'BIS_fnc_Call' in CBA_fnc_globalExecute --- addons/network/fnc_globalExecute.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/network/fnc_globalExecute.sqf b/addons/network/fnc_globalExecute.sqf index 33e8f4254..3aa748630 100644 --- a/addons/network/fnc_globalExecute.sqf +++ b/addons/network/fnc_globalExecute.sqf @@ -49,6 +49,6 @@ if (_channel isEqualTo BI_SEND_TO_CLIENTS_ONLY) then { _code = {if (!isDedicated) then {(_this select 0) call (_this select 1)}}; }; -[_parameters, _code] remoteExec ["BIS_fnc_Call", _channel]; +[_parameters, _code] remoteExec ["call", _channel]; nil