]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_conn_join.cpp
Move all the parameters around AGAIN. See docs shortly
[user/henk/code/inspircd.git] / src / modules / m_conn_join.cpp
index 046176b0c69f9c4830c7ffd926423d54214572a0..58a1d9bf5a3f111ec2d98bbaf1f51679378329fe 100644 (file)
@@ -20,7 +20,7 @@ class ModuleConnJoin : public Module
        private:
                std::string JoinChan;
                std::vector<std::string> Joinchans;
-               
+
 
                int tokenize(const std::string &str, std::vector<std::string> &tokens)
                {
@@ -46,8 +46,8 @@ class ModuleConnJoin : public Module
                        : Module(Me)
                {
                        OnRehash(NULL, "");
-               Implementation eventlist[] = { I_OnPostConnect, I_OnRehash };
-               ServerInstance->Modules->Attach(eventlist, this, 2);
+                       Implementation eventlist[] = { I_OnPostConnect, I_OnRehash };
+                       ServerInstance->Modules->Attach(eventlist, this, 2);
                }
 
                void Prioritize()
@@ -72,7 +72,7 @@ class ModuleConnJoin : public Module
 
                virtual Version GetVersion()
                {
-                       return Version(1,2,0,1,VF_VENDOR,API_VERSION);
+                       return Version("$Id$", VF_VENDOR,API_VERSION);
                }
 
                virtual void OnPostConnect(User* user)