aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
authorMelanie2010-12-24 03:46:57 +0100
committerMelanie2010-12-24 03:46:57 +0100
commit42d44c00f38d6c7f5a67920ff375ab20ceb24fe9 (patch)
tree70e2a650a24047da9b40d9486796c37b146e9331 /OpenSim/Region/ClientStack
parentMerge branch 'master' into careminster-presence-refactor (diff)
downloadopensim-SC_OLD-42d44c00f38d6c7f5a67920ff375ab20ceb24fe9.zip
opensim-SC_OLD-42d44c00f38d6c7f5a67920ff375ab20ceb24fe9.tar.gz
opensim-SC_OLD-42d44c00f38d6c7f5a67920ff375ab20ceb24fe9.tar.bz2
opensim-SC_OLD-42d44c00f38d6c7f5a67920ff375ab20ceb24fe9.tar.xz
Change the mute list parts of the client interface so that all data is provided
to the module
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 870ce3e..5913246 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -9475,7 +9475,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
9475 handlerUpdateMuteListEntry(this, UpdateMuteListEntry.MuteData.MuteID, 9475 handlerUpdateMuteListEntry(this, UpdateMuteListEntry.MuteData.MuteID,
9476 Utils.BytesToString(UpdateMuteListEntry.MuteData.MuteName), 9476 Utils.BytesToString(UpdateMuteListEntry.MuteData.MuteName),
9477 UpdateMuteListEntry.MuteData.MuteType, 9477 UpdateMuteListEntry.MuteData.MuteType,
9478 UpdateMuteListEntry.AgentData.AgentID); 9478 UpdateMuteListEntry.MuteData.MuteFlags);
9479 return true; 9479 return true;
9480 } 9480 }
9481 return false; 9481 return false;
@@ -9490,8 +9490,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
9490 { 9490 {
9491 handlerRemoveMuteListEntry(this, 9491 handlerRemoveMuteListEntry(this,
9492 RemoveMuteListEntry.MuteData.MuteID, 9492 RemoveMuteListEntry.MuteData.MuteID,
9493 Utils.BytesToString(RemoveMuteListEntry.MuteData.MuteName), 9493 Utils.BytesToString(RemoveMuteListEntry.MuteData.MuteName));
9494 RemoveMuteListEntry.AgentData.AgentID);
9495 return true; 9494 return true;
9496 } 9495 }
9497 return false; 9496 return false;