aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs4
1 files changed, 2 insertions, 2 deletions
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
7764 OutPacket(p, ThrottleOutPacketType.Task); 7764 OutPacket(p, ThrottleOutPacketType.Task);
7765 } 7765 }
7766 7766
7767 public void SendLeaveGroupReply(UUID agentID, UUID groupID, bool success) 7767 public void SendLeaveGroupReply(UUID groupID, bool success)
7768 { 7768 {
7769 LeaveGroupReplyPacket p = (LeaveGroupReplyPacket)PacketPool.Instance.GetPacket(PacketType.LeaveGroupReply); 7769 LeaveGroupReplyPacket p = (LeaveGroupReplyPacket)PacketPool.Instance.GetPacket(PacketType.LeaveGroupReply);
7770 7770
7771 p.AgentData = new LeaveGroupReplyPacket.AgentDataBlock(); 7771 p.AgentData = new LeaveGroupReplyPacket.AgentDataBlock();
7772 p.AgentData.AgentID = agentID; 7772 p.AgentData.AgentID = AgentId;
7773 7773
7774 p.GroupData = new LeaveGroupReplyPacket.GroupDataBlock(); 7774 p.GroupData = new LeaveGroupReplyPacket.GroupDataBlock();
7775 p.GroupData.GroupID = groupID; 7775 p.GroupData.GroupID = groupID;