1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 04:43:12 +02:00

Remove protectbotserv option from modes, just use options:botmodes instead

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2782 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Adam-
2010-02-06 19:27:10 +00:00
parent de99f89894
commit 87b62c433d
8 changed files with 20 additions and 18 deletions
+2 -2
View File
@@ -1252,10 +1252,10 @@ int anope_event_capab(const char *source, int ac, const char **av)
ModeManager::AddChannelMode('q', new ChannelModeStatus(CMODE_OWNER, chars[t]));
continue;
case 'a':
ModeManager::AddChannelMode('a', new ChannelModeStatus(CMODE_PROTECT, chars[t], true));
ModeManager::AddChannelMode('a', new ChannelModeStatus(CMODE_PROTECT, chars[t]));
continue;
case 'o':
ModeManager::AddChannelMode('o', new ChannelModeStatus(CMODE_OP, chars[t], true));
ModeManager::AddChannelMode('o', new ChannelModeStatus(CMODE_OP, chars[t]));
continue;
case 'h':
ModeManager::AddChannelMode('h', new ChannelModeStatus(CMODE_HALFOP, chars[t]));