aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
diff options
context:
space:
mode:
authorMW2007-08-27 10:34:28 +0000
committerMW2007-08-27 10:34:28 +0000
commit4c3be4e91f25d9d89b5adadd1eea3cf0b0d5cfec (patch)
tree6b52cb7da598ce859a0ed1dc72a77ba31fda1354 /OpenSim/Region/Environment/Scenes/Scene.cs
parentHere is your ocean back. You will probably need to delete your regionassets.y... (diff)
downloadopensim-SC_OLD-4c3be4e91f25d9d89b5adadd1eea3cf0b0d5cfec.zip
opensim-SC_OLD-4c3be4e91f25d9d89b5adadd1eea3cf0b0d5cfec.tar.gz
opensim-SC_OLD-4c3be4e91f25d9d89b5adadd1eea3cf0b0d5cfec.tar.bz2
opensim-SC_OLD-4c3be4e91f25d9d89b5adadd1eea3cf0b0d5cfec.tar.xz
Another small tweak to image sending.
Implemented a few ll Functions, llSetObjectName llGetObjectName, llLoadURL (all currently untested).
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index dcc3e16..49ba655 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -1099,6 +1099,14 @@ namespace OpenSim.Region.Environment.Scenes
1099 1099
1100 #endregion 1100 #endregion
1101 1101
1102 public void SendUrlToUser(LLUUID avatarID, string objectname, LLUUID objectID, LLUUID ownerID, bool groupOwned, string message, string url)
1103 {
1104 if (Avatars.ContainsKey(avatarID))
1105 {
1106 Avatars[avatarID].ControllingClient.SendLoadURL(objectname, objectID, ownerID, groupOwned, message, url);
1107 }
1108 }
1109
1102 #region Alert Methods 1110 #region Alert Methods
1103 1111
1104 void SendPermissionAlert(LLUUID user, string reason) 1112 void SendPermissionAlert(LLUUID user, string reason)
@@ -1106,6 +1114,7 @@ namespace OpenSim.Region.Environment.Scenes
1106 SendAlertToUser(user, reason, false); 1114 SendAlertToUser(user, reason, false);
1107 } 1115 }
1108 1116
1117
1109 public void SendGeneralAlert(string message) 1118 public void SendGeneralAlert(string message)
1110 { 1119 {
1111 foreach (ScenePresence presence in this.Avatars.Values) 1120 foreach (ScenePresence presence in this.Avatars.Values)