summaryrefslogtreecommitdiff
path: root/src/modules/m_antibear.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_antibear.cpp')
-rw-r--r--src/modules/m_antibear.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_antibear.cpp b/src/modules/m_antibear.cpp
index 874ff43da..633b1e332 100644
--- a/src/modules/m_antibear.cpp
+++ b/src/modules/m_antibear.cpp
@@ -65,9 +65,9 @@ class ModuleAntiBear : public Module
virtual int OnUserRegister(User* user)
{
- user->WriteNumeric(439, "%s :This server has anti-spambot mechanisms enabled.", user->nick);
- user->WriteNumeric(931, "%s :Malicious bots, spammers, and other automated systems of dubious origin are NOT welcome here.", user->nick);
- user->WriteServ("PRIVMSG %s :\1TIME\1", user->nick);
+ user->WriteNumeric(439, "%s :This server has anti-spambot mechanisms enabled.", user->nick.c_str());
+ user->WriteNumeric(931, "%s :Malicious bots, spammers, and other automated systems of dubious origin are NOT welcome here.", user->nick.c_str());
+ user->WriteServ("PRIVMSG %s :\1TIME\1", user->nick.c_str());
user->Extend("antibear_timewait");
return 0;
}