Plumb yet another groups packet

This commit is contained in:
Melanie Thielker
2008-12-25 18:22:50 +00:00
parent a647a19894
commit 3b6ffd9e41

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();