diff options
author | Melanie | 2010-12-24 03:46:57 +0100 |
---|---|---|
committer | Melanie | 2010-12-24 03:46:57 +0100 |
commit | 42d44c00f38d6c7f5a67920ff375ab20ceb24fe9 (patch) | |
tree | 70e2a650a24047da9b40d9486796c37b146e9331 /OpenSim/Framework/IClientAPI.cs | |
parent | Merge branch 'master' into careminster-presence-refactor (diff) | |
download | opensim-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 '')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index da893b6..ea081e2 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -463,9 +463,9 @@ namespace OpenSim.Framework | |||
463 | 463 | ||
464 | public delegate void AgentFOV(IClientAPI client, float verticalAngle); | 464 | public delegate void AgentFOV(IClientAPI client, float verticalAngle); |
465 | 465 | ||
466 | public delegate void MuteListEntryUpdate(IClientAPI client, UUID MuteID, string Name, int Flags,UUID AgentID); | 466 | public delegate void MuteListEntryUpdate(IClientAPI client, UUID MuteID, string Name, int type, uint flags); |
467 | 467 | ||
468 | public delegate void MuteListEntryRemove(IClientAPI client, UUID MuteID, string Name, UUID AgentID); | 468 | public delegate void MuteListEntryRemove(IClientAPI client, UUID MuteID, string Name); |
469 | 469 | ||
470 | public delegate void AvatarInterestReply(IClientAPI client,UUID target, uint wantmask, string wanttext, uint skillsmask, string skillstext, string languages); | 470 | public delegate void AvatarInterestReply(IClientAPI client,UUID target, uint wantmask, string wanttext, uint skillsmask, string skillstext, string languages); |
471 | 471 | ||