diff options
author | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-05-26 19:48:12 +0000 |
---|---|---|
committer | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-05-26 19:48:12 +0000 |
commit | 3d396f245b99b7469b742f45639367e47d6f7456 (patch) | |
tree | 0c0c5708810c075e74908c2fd4dfcf2ba0baa610 | |
parent | 0018f790ed085705bc56646b425b6a783f038af5 (diff) |
Fixed tracking of users with the +a channel mode on unrealircd during SJOINs
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2988 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | src/protocol/unreal32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index d36a5db20..b44031004 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -1328,8 +1328,8 @@ static void AddModes() ModeManager::AddChannelMode(new ChannelModeStatus(CMODE_VOICE, 'v', '+')); ModeManager::AddChannelMode(new ChannelModeStatus(CMODE_HALFOP, 'h', '%')); ModeManager::AddChannelMode(new ChannelModeStatus(CMODE_OP, 'o', '@')); - ModeManager::AddChannelMode(new ChannelModeStatus(CMODE_PROTECT, 'a', '&')); - /* Unreal sends +q as * */ + /* Unreal sends +q as * and +a as ~ */ + ModeManager::AddChannelMode(new ChannelModeStatus(CMODE_PROTECT, 'a', '~')); ModeManager::AddChannelMode(new ChannelModeStatus(CMODE_OWNER, 'q', '*')); /* Add user modes */ |