mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Merge pull request #3027 from acemod/fixServerLog
Send string to serverLog instead of strucText
This commit is contained in:
commit
aa668a44e4
@ -1,19 +1,24 @@
|
||||
/*
|
||||
* Author: esteldunedain
|
||||
* ?
|
||||
* Log a RPT messaged on just the server
|
||||
*
|
||||
* Arguments:
|
||||
* ?
|
||||
* 0: Text to display <STRING>
|
||||
*
|
||||
* Return Value:
|
||||
* None
|
||||
*
|
||||
* Example:
|
||||
* ["x happened"] call ace_common_fnc_serverLog;
|
||||
*
|
||||
* Public: no
|
||||
*/
|
||||
#include "script_component.hpp"
|
||||
|
||||
params [["_msg", "", [""]]];
|
||||
|
||||
if (isServer) then {
|
||||
diag_log _this;
|
||||
diag_log text _msg;
|
||||
} else {
|
||||
[_this, QFUNC(serverLog), 1] call FUNC(execRemoteFnc);
|
||||
};
|
||||
|
@ -44,7 +44,7 @@ if (_dir != 1) then {
|
||||
deleteMarkerLocal (GVAR(drawing_tempLineMarker) select 0);
|
||||
["drawing_addLineMarker", GVAR(drawing_tempLineMarker)] call EFUNC(common,globalEvent);
|
||||
// Log who drew on the briefing screen
|
||||
(text format ["[ACE] Server: Player %1 drew on the briefing screen", profileName]) call EFUNC(common,serverLog);
|
||||
[ACE_INFOFORMAT_1("Player %1 drew on the briefing screen", profileName)] call EFUNC(common,serverLog);
|
||||
} else {
|
||||
GVAR(drawing_tempLineMarker) call FUNC(updateLineMarker);
|
||||
GVAR(drawing_lineMarkers) pushBack (+GVAR(drawing_tempLineMarker));
|
||||
|
Loading…
Reference in New Issue
Block a user