mirror of
https://github.com/anope/anope.git
synced 2026-07-04 04:43:13 +02:00
Removed NICKMAX and CHANMAX, replaced user->nick, c->name, and ci->name with std::string
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2732 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
+1
-1
@@ -167,7 +167,7 @@ void BotInfo::UnAssign(User *u, ChannelInfo *ci)
|
||||
if (ci->c && ci->c->usercount >= Config.BSMinUsers)
|
||||
{
|
||||
if (u)
|
||||
ircdproto->SendPart(ci->bi, ci->c, "UNASSIGN from %s", u->nick);
|
||||
ircdproto->SendPart(ci->bi, ci->c, "UNASSIGN from %s", u->nick.c_str());
|
||||
else
|
||||
ircdproto->SendPart(ci->bi, ci->c, "");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user