]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_antibottler.cpp
Remove unneeded headers from spanningtree. This was done to the rest of the source...
[user/henk/code/inspircd.git] / src / modules / m_antibottler.cpp
index 2c96495a4341c53e1ec7929798feafa79dfe6beb..56ad9da053339072d28c8655e81d8ccd60a1c21a 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' */
 
@@ -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)