diff options
author | BlueWall | 2011-08-20 12:36:35 -0400 |
---|---|---|
committer | BlueWall | 2011-08-20 12:36:35 -0400 |
commit | 5e231acdce7a006a4d88a205044d9862f7d4dda8 (patch) | |
tree | 7ce528d13ddabcdcd19b9fb3b55232661d5db34d /OpenSim/Region/Framework | |
parent | Add llRegionSayTo (diff) | |
download | opensim-SC_OLD-5e231acdce7a006a4d88a205044d9862f7d4dda8.zip opensim-SC_OLD-5e231acdce7a006a4d88a205044d9862f7d4dda8.tar.gz opensim-SC_OLD-5e231acdce7a006a4d88a205044d9862f7d4dda8.tar.bz2 opensim-SC_OLD-5e231acdce7a006a4d88a205044d9862f7d4dda8.tar.xz |
Add avatar and attachments to llRegionSay
llRegionSay will now message avatars on chan 0
and will message attachments on the avatar that
listen on channels other than 0.
This behavior is consistant with the LL
implementation as tested on regions in Agni
with one exception: this implementation does
not include issue:
https://jira.secondlife.com/browse/SCR-66?
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IWorldComm.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IWorldComm.cs b/OpenSim/Region/Framework/Interfaces/IWorldComm.cs index 8f200ae..dafbf30 100644 --- a/OpenSim/Region/Framework/Interfaces/IWorldComm.cs +++ b/OpenSim/Region/Framework/Interfaces/IWorldComm.cs | |||
@@ -98,7 +98,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
98 | /// <param name='msg'> | 98 | /// <param name='msg'> |
99 | /// Message. | 99 | /// Message. |
100 | /// </param> | 100 | /// </param> |
101 | void DeliverMessageTo(UUID target, int channel, string name, UUID id, string msg); | 101 | bool DeliverMessageTo(UUID target, int channel, Vector3 pos, string name, UUID id, string msg, out string error); |
102 | 102 | ||
103 | /// <summary> | 103 | /// <summary> |
104 | /// Are there any listen events ready to be dispatched? | 104 | /// Are there any listen events ready to be dispatched? |