aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
authorCasperW2009-12-26 18:17:55 +0100
committerCasperW2009-12-26 18:17:55 +0100
commit1b8f91a0db3dd636a86fc20ff1f8496474899925 (patch)
tree48274af2007b977d9dca28c702644d60559b1f01 /OpenSim/Region/ClientStack
parentFix for landing points. Only one scenario is not fully covered by this change... (diff)
parentMerge branch 'master' into careminster (diff)
downloadopensim-SC-1b8f91a0db3dd636a86fc20ff1f8496474899925.zip
opensim-SC-1b8f91a0db3dd636a86fc20ff1f8496474899925.tar.gz
opensim-SC-1b8f91a0db3dd636a86fc20ff1f8496474899925.tar.bz2
opensim-SC-1b8f91a0db3dd636a86fc20ff1f8496474899925.tar.xz
Merge branch 'master' into casper
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index e7ce2e0..3ac4e5e 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -15792,5 +15792,22 @@ namespace OpenSim.Region.ClientStack.LindenUDP
15792 15792
15793 return osdEvent; 15793 return osdEvent;
15794 } 15794 }
15795
15796 public void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages)
15797 {
15798 AvatarInterestsReplyPacket packet = (AvatarInterestsReplyPacket)PacketPool.Instance.GetPacket(PacketType.AvatarInterestsReply);
15799
15800 packet.AgentData = new AvatarInterestsReplyPacket.AgentDataBlock();
15801 packet.AgentData.AgentID = AgentId;
15802 packet.AgentData.AvatarID = avatarID;
15803
15804 packet.PropertiesData = new AvatarInterestsReplyPacket.PropertiesDataBlock();
15805 packet.PropertiesData.WantToMask = wantMask;
15806 packet.PropertiesData.WantToText = Utils.StringToBytes(wantText);
15807 packet.PropertiesData.SkillsMask = skillsMask;
15808 packet.PropertiesData.SkillsText = Utils.StringToBytes(skillsText);
15809 packet.PropertiesData.LanguagesText = Utils.StringToBytes(languages);
15810 OutPacket(packet, ThrottleOutPacketType.Task);
15811 }
15795 } 15812 }
15796} 15813}