From a2676388f4f5976bf27f2d9ec5fc1170db9e7c62 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Mon, 23 Mar 2015 22:17:51 +0100 Subject: Make the scripted dialogs and restart message appear in the top right corner again. Viewers have been busy making these notifications all into toasts but we believe there are message that are important enough to make the user acknowledge them. --- OpenSim/Region/CoreModules/Avatar/Dialog/DialogModule.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/CoreModules/Avatar') diff --git a/OpenSim/Region/CoreModules/Avatar/Dialog/DialogModule.cs b/OpenSim/Region/CoreModules/Avatar/Dialog/DialogModule.cs index 0e7ab7e..4fdcd01 100644 --- a/OpenSim/Region/CoreModules/Avatar/Dialog/DialogModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Dialog/DialogModule.cs @@ -203,8 +203,8 @@ namespace OpenSim.Region.CoreModules.Avatar.Dialog { m_scene.ForEachRootClient(delegate(IClientAPI client) { - client.SendBlueBoxMessage(fromAvatarID, fromAvatarName, - message); + client.SendAgentAlertMessage( + message, false); }); } -- cgit v1.1