ACE3/addons/common/functions/fnc_serverLog.sqf
2015-09-19 20:34:07 +02:00

20 lines
249 B
Plaintext

/*
* Author: esteldunedain
* ?
*
* Arguments:
* ?
*
* Return Value:
* None
*
* Public: no
*/
#include "script_component.hpp"
if (isServer) then {
diag_log _this;
} else {
[_this, QFUNC(serverLog), 1] call FUNC(execRemoteFnc);
};