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;