]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_antibear.cpp
Bah
[user/henk/code/inspircd.git] / src / modules / m_antibear.cpp
index 2db7f58f30bc0202b0989d03d6d4fea35de84b87..72eff0f9fdd54d2ab5dbb061d13b3298c814888d 100644 (file)
@@ -34,11 +34,11 @@ class ModuleAntiBear : public Module
        
        virtual Version GetVersion()
        {
-               return Version(1,1,0,0,VF_VENDOR,API_VERSION);
+               return Version(1,2,0,0,VF_VENDOR,API_VERSION);
        }
 
 
-       virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, User *user, bool validated, const std::string &original_line)
+       virtual int OnPreCommand(const std::string &command, const char* const* parameters, int pcnt, User *user, bool validated, const std::string &original_line)
        {
                if (command == "NOTICE" && !validated && pcnt > 1 && user->GetExt("antibear_timewait"))
                {
@@ -66,8 +66,8 @@ class ModuleAntiBear : public Module
 
        virtual int OnUserRegister(User* user)
        {
-               user->WriteServ("439 %s :This server has anti-spambot mechanisms enabled.", user->nick);
-               user->WriteServ("931 %s :Malicious bots, spammers, and other automated systems of dubious origin are NOT welcome here.", user->nick);
+               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->Extend("antibear_timewait");
                return 0;