From 322a4de74b018117d61a6752492ca4166919fa4c Mon Sep 17 00:00:00 2001 From: IT07 Date: Mon, 19 Sep 2016 18:42:54 +0200 Subject: [PATCH] color instead of type --- a3_vemf_reloaded/sqf/notificationToClient.sqf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/a3_vemf_reloaded/sqf/notificationToClient.sqf b/a3_vemf_reloaded/sqf/notificationToClient.sqf index 9fac30e..c554f16 100644 --- a/a3_vemf_reloaded/sqf/notificationToClient.sqf +++ b/a3_vemf_reloaded/sqf/notificationToClient.sqf @@ -5,7 +5,7 @@ will put mission notification on either all screens or just on given Params: - _this select 0: SCALAR - mission type (AI mode) + _this select 0: SCALAR - mission color _this select 1: STRING - notification title _this select 2: STRING - notification message _this select 3: ARRAY (optional) - specific clients to (ONLY) send notification to @@ -14,9 +14,9 @@ nothing */ -params [ "_mt", "_title", "_line", "_to" ]; +params [ "_mc", "_title", "_line", "_to" ]; if ( isNil "_to" ) then { _to = allPlayers }; { - VEMFrMsgToClient = [ [ _mt, _title, _line ], "" ]; + VEMFrMsgToClient = [ [ _mc, _title, _line ], "" ]; ( owner _x ) publicVariableClient "VEMFrMsgToClient"; } forEach _to;