Remove a redundant parameter

This commit is contained in:
Melanie Thielker
2008-11-16 23:25:36 +00:00
parent 5e2e05a1c1
commit 4d23d22fb1
4 changed files with 5 additions and 5 deletions

View File

@@ -7764,12 +7764,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP
OutPacket(p, ThrottleOutPacketType.Task);
}
public void SendLeaveGroupReply(UUID agentID, UUID groupID, bool success)
public void SendLeaveGroupReply(UUID groupID, bool success)
{
LeaveGroupReplyPacket p = (LeaveGroupReplyPacket)PacketPool.Instance.GetPacket(PacketType.LeaveGroupReply);
p.AgentData = new LeaveGroupReplyPacket.AgentDataBlock();
p.AgentData.AgentID = agentID;
p.AgentData.AgentID = AgentId;
p.GroupData = new LeaveGroupReplyPacket.GroupDataBlock();
p.GroupData.GroupID = groupID;