1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 04:56:38 +02:00

Removed c_userlist and u_chanlist, replaced with std::list

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2764 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Adam-
2010-01-16 06:57:14 +00:00
parent aaf1cefd1c
commit ff13d00eb5
31 changed files with 396 additions and 423 deletions
+1 -1
View File
@@ -237,7 +237,7 @@ void ChannelModeBan::AddMask(Channel *chan, const char *mask)
/* Check whether it matches a botserv bot after adding internally
* and parsing it through cidr support. ~ Viper */
if (Config.s_BotServ && Config.BSSmartJoin && chan->ci && chan->ci->bi
&& chan->usercount >= Config.BSMinUsers)
&& chan->users.size() >= Config.BSMinUsers)
{
BotInfo *bi = chan->ci->bi;