aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-15 16:52:48 +0000
committerJustin Clarke Casey2008-10-15 16:52:48 +0000
commit87e85489f3aa1a2f5d827cfc4941cf5fbfc45b07 (patch)
treeb2ac85ff9ef6769c84b692d5ef2d0dfaf41c0483 /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
parent* minor: disable a couple of other lines of image not found, which are pointl... (diff)
downloadopensim-SC_OLD-87e85489f3aa1a2f5d827cfc4941cf5fbfc45b07.zip
opensim-SC_OLD-87e85489f3aa1a2f5d827cfc4941cf5fbfc45b07.tar.gz
opensim-SC_OLD-87e85489f3aa1a2f5d827cfc4941cf5fbfc45b07.tar.bz2
opensim-SC_OLD-87e85489f3aa1a2f5d827cfc4941cf5fbfc45b07.tar.xz
* refactor: move viewer effect packet into LLClientView
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index b826a12..251ba78 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -2192,6 +2192,18 @@ namespace OpenSim.Region.ClientStack.LindenUDP
2192 OutPacket(viewertime, ThrottleOutPacketType.Task); 2192 OutPacket(viewertime, ThrottleOutPacketType.Task);
2193 */ 2193 */
2194 } 2194 }
2195
2196 public void SendViewerEffect(ViewerEffectPacket.EffectBlock[] effectBlocks)
2197 {
2198 ViewerEffectPacket packet = (ViewerEffectPacket)PacketPool.Instance.GetPacket(PacketType.ViewerEffect);
2199 packet.Effect = effectBlocks;
2200
2201 packet.AgentData.AgentID = AgentId;
2202 packet.AgentData.SessionID = SessionId;
2203 packet.Header.Reliable = false;
2204 packet.Header.Zerocoded = true;
2205 OutPacket(packet, ThrottleOutPacketType.Task);
2206 }
2195 2207
2196 public void SendAvatarProperties(UUID avatarID, string aboutText, string bornOn, Byte[] charterMember, 2208 public void SendAvatarProperties(UUID avatarID, string aboutText, string bornOn, Byte[] charterMember,
2197 string flAbout, uint flags, UUID flImageID, UUID imageID, string profileURL, 2209 string flAbout, uint flags, UUID flImageID, UUID imageID, string profileURL,