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

Add networkinfo:chanlen config directive

This commit is contained in:
Adam
2012-10-01 02:29:31 -04:00
parent 89428a9d10
commit b19a3af4db
5 changed files with 10 additions and 3 deletions
+2 -2
View File
@@ -341,10 +341,10 @@ class UnrealIRCdProto : public IRCDProto
bool IsChannelValid(const Anope::string &chan) anope_override
{
if (chan.find(':') != Anope::string::npos || chan[0] != '#')
if (chan.find(':') != Anope::string::npos)
return false;
return true;
return IRCDProto::IsChannelValid(chan);
}
void SendLogin(User *u) anope_override