diff options
author | Justin Clark-Casey (justincc) | 2012-03-31 01:29:13 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-03-31 01:29:13 +0100 |
commit | 387d7fdad56267b845c12a52cbc6b80c56c8a558 (patch) | |
tree | 25b7f7e836f243fae79f71cfd46336eb97712659 | |
parent | Add MSSQL login processing fix for servers run on different locales. (diff) | |
download | opensim-SC_OLD-387d7fdad56267b845c12a52cbc6b80c56c8a558.zip opensim-SC_OLD-387d7fdad56267b845c12a52cbc6b80c56c8a558.tar.gz opensim-SC_OLD-387d7fdad56267b845c12a52cbc6b80c56c8a558.tar.bz2 opensim-SC_OLD-387d7fdad56267b845c12a52cbc6b80c56c8a558.tar.xz |
Allow llRegionSayTo() to work on the PUBLIC_CHANNEL, as per http://wiki.secondlife.com/wiki/LlRegionSayTo
Addresses http://opensimulator.org/mantis/view.php?id=5950
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/WorldComm/WorldCommModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/WorldComm/WorldCommModule.cs b/OpenSim/Region/CoreModules/Scripting/WorldComm/WorldCommModule.cs index ef9b4e0..176c86d 100644 --- a/OpenSim/Region/CoreModules/Scripting/WorldComm/WorldCommModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/WorldComm/WorldCommModule.cs | |||
@@ -319,7 +319,7 @@ namespace OpenSim.Region.CoreModules.Scripting.WorldComm | |||
319 | // Send message to avatar | 319 | // Send message to avatar |
320 | if (channel == 0) | 320 | if (channel == 0) |
321 | { | 321 | { |
322 | m_scene.SimChatBroadcast(Utils.StringToBytes(msg), ChatTypeEnum.Owner, 0, pos, name, id, false); | 322 | m_scene.SimChatBroadcast(Utils.StringToBytes(msg), ChatTypeEnum.Broadcast, 0, pos, name, id, false); |
323 | } | 323 | } |
324 | 324 | ||
325 | List<SceneObjectGroup> attachments = sp.GetAttachments(); | 325 | List<SceneObjectGroup> attachments = sp.GetAttachments(); |