diff options
Diffstat (limited to 'src/modules/m_serverban.cpp')
-rw-r--r-- | src/modules/m_serverban.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_serverban.cpp b/src/modules/m_serverban.cpp index e6fda051c..7d57466cd 100644 --- a/src/modules/m_serverban.cpp +++ b/src/modules/m_serverban.cpp @@ -44,8 +44,7 @@ class ModuleServerBan : public Module if (c->IsExtBanned(user->server, 's')) { - // XXX: send a numeric here - user->WriteServ("NOTICE "+std::string(user->nick)+" :*** Cannot join " + c->name + ", as you match a ban"); + user->WriteNumeric(ERR_BANNEDFROMCHAN, "%s %s :Cannot join channel (You're banned)", user->nick.c_str(), c->name.c_str()); return 1; } |