1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 05:06:37 +02:00

Fixed tracking of channel mode +L on InspIRCd 1.2

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2944 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Adam-
2010-05-10 06:30:17 +00:00
parent 7b6d1e1b52
commit 80969ad89a
+1 -1
View File
@@ -1050,7 +1050,7 @@ int anope_event_capab(const char *source, int ac, const char **av)
ModeManager::AddChannelMode(new ChannelModeParam(CMODE_NOREJOIN, 'J', true));
continue;
case 'L':
ModeManager::AddChannelMode(new ChannelModeParam(CMODE_REDIRECT, true));
ModeManager::AddChannelMode(new ChannelModeParam(CMODE_REDIRECT, 'L', true));
continue;
case 'f':
ModeManager::AddChannelMode(new ChannelModeFlood('f', true));