Change the mute list parts of the client interface so that all data is provided

to the module
This commit is contained in:
Melanie
2010-12-24 03:46:57 +01:00
parent 2e3d0fb276
commit 42d44c00f3
2 changed files with 4 additions and 5 deletions

View File

@@ -9475,7 +9475,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
handlerUpdateMuteListEntry(this, UpdateMuteListEntry.MuteData.MuteID,
Utils.BytesToString(UpdateMuteListEntry.MuteData.MuteName),
UpdateMuteListEntry.MuteData.MuteType,
UpdateMuteListEntry.AgentData.AgentID);
UpdateMuteListEntry.MuteData.MuteFlags);
return true;
}
return false;
@@ -9490,8 +9490,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
{
handlerRemoveMuteListEntry(this,
RemoveMuteListEntry.MuteData.MuteID,
Utils.BytesToString(RemoveMuteListEntry.MuteData.MuteName),
RemoveMuteListEntry.AgentData.AgentID);
Utils.BytesToString(RemoveMuteListEntry.MuteData.MuteName));
return true;
}
return false;