From d77ebfdde7b7c718b565d28ff575c82221d2ba9d Mon Sep 17 00:00:00 2001 From: clarky Date: Fri, 10 Feb 2017 19:55:59 +0000 Subject: [PATCH] Fixed blank messages onLoad.sqf Fixed blank messages onLoad.sqf --- BaseMarker_ExAd/BaseMarker/onLoad.sqf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BaseMarker_ExAd/BaseMarker/onLoad.sqf b/BaseMarker_ExAd/BaseMarker/onLoad.sqf index 385cb89..c3b88df 100644 --- a/BaseMarker_ExAd/BaseMarker/onLoad.sqf +++ b/BaseMarker_ExAd/BaseMarker/onLoad.sqf @@ -47,7 +47,7 @@ fnc_markerOn = { }; } forEach (allMissionObjects "Exile_Construction_Flag_Static"); - ["Success",["Base Markers toggled on."]] call BIS_fnc_showNotification; + ["SuccessTitleAndText",["Base Markers toggled on."]] call ExileClient_gui_toaster_addTemplateToast; }; fnc_markerOff = { @@ -65,5 +65,5 @@ fnc_markerOff = { }; } forEach (allMissionObjects "Exile_Construction_Flag_Static"); - ["Whoops",["Base Markers toggled off."]] call BIS_fnc_showNotification; -}; \ No newline at end of file + ["SuccessTitleAndText",["Base Markers toggled off."]] call ExileClient_gui_toaster_addTemplateToast; +};