Few more in common

This commit is contained in:
PabstMirror 2016-06-02 20:13:09 -05:00
parent 59ffff406e
commit 4915637601
3 changed files with 6 additions and 6 deletions

View File

@ -61,7 +61,7 @@ if (!isServer) then {
_error = _error + "Newer version; ";
};
//[QGVAR(systemChatGlobal), _error] call FUNC(globalEvent);
//[QGVAR(systemChatGlobal), _error] call CBA_fnc_globalEvent;
ACE_LOGERROR(_error);

View File

@ -20,5 +20,5 @@ params [["_msg", "", [""]]];
if (isServer) then {
diag_log text _msg;
} else {
[QGVAR(serverLog), _this] call FUNC(serverEvent);
[QGVAR(serverLog), _this] call CBA_fnc_serverEvent;
};

View File

@ -100,7 +100,7 @@ if (!isServer) then {
_error = _error call _fnc_cutComma;
diag_log text _error;
[QGVAR(systemChatGlobal), _error] call FUNC(globalEvent);
[QGVAR(systemChatGlobal), _error] call CBA_fnc_globalEvent;
};
_missingAddonServer = false;
@ -117,7 +117,7 @@ if (!isServer) then {
_error = _error call _fnc_cutComma;
diag_log text _error;
[QGVAR(systemChatGlobal), _error] call FUNC(globalEvent);
[QGVAR(systemChatGlobal), _error] call CBA_fnc_globalEvent;
};
_oldVersionClient = false;
@ -134,7 +134,7 @@ if (!isServer) then {
_error = _error call _fnc_cutComma;
diag_log text _error;
[QGVAR(systemChatGlobal), _error] call FUNC(globalEvent);
[QGVAR(systemChatGlobal), _error] call CBA_fnc_globalEvent;
};
_oldVersionServer = false;
@ -151,7 +151,7 @@ if (!isServer) then {
_error = _error call _fnc_cutComma;
diag_log text _error;
[QGVAR(systemChatGlobal), _error] call FUNC(globalEvent);
[QGVAR(systemChatGlobal), _error] call CBA_fnc_globalEvent;
};
ACE_Version_ClientErrors = [_missingAddon, _missingAddonServer, _oldVersionClient, _oldVersionServer];