]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_antibottler.cpp
More AddModes fixes
[user/henk/code/inspircd.git] / src / modules / m_antibottler.cpp
index 2c96495a4341c53e1ec7929798feafa79dfe6beb..cef990a71e0119235196dd3068ab630bfb15620c 100644 (file)
@@ -12,9 +12,6 @@
  */
 
 #include "inspircd.h"
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
 
 /* $ModDesc: Changes the ident of connecting bottler clients to 'bottler' */
 
@@ -42,7 +39,7 @@ class ModuleAntiBottler : public Module
                return Version(1,1,0,1,VF_VENDOR,API_VERSION);
        }
 
-       virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line)
+       virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, User *user, bool validated, const std::string &original_line)
        {
                char data[MAXBUF];
                strlcpy(data,original_line.c_str(),MAXBUF);
@@ -83,7 +80,7 @@ class ModuleAntiBottler : public Module
                        if (!not_bottler)
                        {
                                std::string strgecos = std::string(gecos) + "[Possible bottler, ident: " + std::string(ident) + "]";
-                               const char* modified[3];
+                               const char* modified[4];
                                modified[0] = "bottler";
                                modified[1] = local;
                                modified[2] = remote;
@@ -96,4 +93,4 @@ class ModuleAntiBottler : public Module
        }
 };
 
-MODULE_INIT(ModuleAntiBottler);
+MODULE_INIT(ModuleAntiBottler)