aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 2475b17..beebfd4 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -8206,6 +8206,19 @@ namespace OpenSim.Region.ClientStack.LindenUDP
8206 OutPacket(cr, ThrottleOutPacketType.Task); 8206 OutPacket(cr, ThrottleOutPacketType.Task);
8207 } 8207 }
8208 8208
8209 public void SendAgentDropGroup(UUID groupID)
8210 {
8211 AgentDropGroupPacket dg =
8212 (AgentDropGroupPacket)PacketPool.Instance.GetPacket(
8213 PacketType.AgentDropGroup);
8214
8215 dg.AgentData = new AgentDropGroupPacket.AgentDataBlock();
8216 dg.AgentData.AgentID = AgentId;
8217 dg.AgentData.GroupID = groupID;
8218
8219 OutPacket(dg, ThrottleOutPacketType.Task);
8220 }
8221
8209 public void KillEndDone() 8222 public void KillEndDone()
8210 { 8223 {
8211 KillPacket kp = new KillPacket(); 8224 KillPacket kp = new KillPacket();