From 4d23d22fb16ecc58c53b535aca9af40dfa55b26e Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Sun, 16 Nov 2008 23:25:36 +0000 Subject: Remove a redundant parameter --- OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/ClientStack') diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 3933cf7..42565c5 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs @@ -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; -- cgit v1.1