From 6f8972c518efe0f7485126289f8fcbe15b979567 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 18 May 2008 23:25:41 +0000 Subject: Fix two git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9749 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_antibear.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/modules/m_antibear.cpp') 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; } -- cgit v1.2.3