From 3d396f245b99b7469b742f45639367e47d6f7456 Mon Sep 17 00:00:00 2001 From: Adam- Date: Wed, 26 May 2010 19:48:12 +0000 Subject: 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 --- src/protocol/unreal32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/protocol') 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 */ -- cgit