Plumb yet another groups packet

0.6.2-post-fixes
Melanie Thielker 2008-12-25 18:22:50 +00:00
parent a647a19894
commit 3b6ffd9e41
1 changed files with 13 additions and 0 deletions

View File

@ -8206,6 +8206,19 @@ namespace OpenSim.Region.ClientStack.LindenUDP
OutPacket(cr, ThrottleOutPacketType.Task);
}
public void SendAgentDropGroup(UUID groupID)
{
AgentDropGroupPacket dg =
(AgentDropGroupPacket)PacketPool.Instance.GetPacket(
PacketType.AgentDropGroup);
dg.AgentData = new AgentDropGroupPacket.AgentDataBlock();
dg.AgentData.AgentID = AgentId;
dg.AgentData.GroupID = groupID;
OutPacket(dg, ThrottleOutPacketType.Task);
}
public void KillEndDone()
{
KillPacket kp = new KillPacket();