aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar
diff options
context:
space:
mode:
authorMelanie Thielker2015-03-23 22:17:51 +0100
committerMelanie Thielker2015-03-23 22:17:51 +0100
commita2676388f4f5976bf27f2d9ec5fc1170db9e7c62 (patch)
treebe02c733cdeb64a44349c2b4d038eaa377d6e75a /OpenSim/Region/CoreModules/Avatar
parentMake log output of remote admin's restart region call reflect restart cancell... (diff)
downloadopensim-SC_OLD-a2676388f4f5976bf27f2d9ec5fc1170db9e7c62.zip
opensim-SC_OLD-a2676388f4f5976bf27f2d9ec5fc1170db9e7c62.tar.gz
opensim-SC_OLD-a2676388f4f5976bf27f2d9ec5fc1170db9e7c62.tar.bz2
opensim-SC_OLD-a2676388f4f5976bf27f2d9ec5fc1170db9e7c62.tar.xz
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.
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/Dialog/DialogModule.cs4
1 files changed, 2 insertions, 2 deletions
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
203 { 203 {
204 m_scene.ForEachRootClient(delegate(IClientAPI client) 204 m_scene.ForEachRootClient(delegate(IClientAPI client)
205 { 205 {
206 client.SendBlueBoxMessage(fromAvatarID, fromAvatarName, 206 client.SendAgentAlertMessage(
207 message); 207 message, false);
208 }); 208 });
209 } 209 }
210 210