]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_antibear.cpp
Initial commit of m_satopic, provides /satopic. Needs testing on a multi-server network.
[user/henk/code/inspircd.git] / src / modules / m_antibear.cpp
index 925ec23149278eb1eae245bfb1329c33879242cd..77b817b542af1c89d8669b7613801d168015fd15 100644 (file)
@@ -23,15 +23,15 @@ class ModuleAntiBear : public Module
  public:
        ModuleAntiBear(InspIRCd* Me) : Module(Me)
        {
-               
+
                Implementation eventlist[] = { I_OnUserRegister, I_OnPreCommand };
                ServerInstance->Modules->Attach(eventlist, this, 2);
        }
-       
+
        virtual ~ModuleAntiBear()
        {
        }
-       
+
        virtual Version GetVersion()
        {
                return Version(1,2,0,0,VF_VENDOR,API_VERSION);
@@ -54,12 +54,12 @@ class ModuleAntiBear : public Module
 
                                return 1;
                        }
-                       
+
                        user->Shrink("antibear_timewait");
                        // Block the command, so the user doesn't receive a no such nick notice
                        return 1;
                }
-               
+
                return 0;
        }