Copypasta

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10097 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
w00t 2008-08-05 15:16:03 +00:00
parent 27cef863f7
commit 02be48cfeb

View File

@ -78,7 +78,7 @@ class ModuleOperChans : public Module
{
if (chan && chan->IsExtBanned(user->oper, 'O'))
{
user->WriteNumeric(ERR_BANNEDFROMCHAN, "%s %s :Cannot join channel (You're banned)", user->nick.c_str(), c->name.c_str());
user->WriteNumeric(ERR_BANNEDFROMCHAN, "%s %s :Cannot join channel (You're banned)", user->nick.c_str(), chan->name.c_str());
return 1;
}
}