]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_sajoin.cpp
Added <oper:swhois> to m_swhois, which will override <type:swhois> if specified
[user/henk/code/inspircd.git] / src / modules / m_sajoin.cpp
index e025b5e3eb09a893daa8973417f0a781a4f6e982..6f91b886495ce9469a84e4f0bb63aebc9ef7c79b 100644 (file)
@@ -26,9 +26,8 @@ using namespace std;
 
 /* $ModDesc: Provides support for unreal-style SAJOIN command */
 
-
-
-
+/** Handle /SAJOIN
+ */
 class cmd_sajoin : public command_t
 {
  public:
@@ -79,7 +78,7 @@ class cmd_sajoin : public command_t
                        }
                }
 
-               return CMD_SUCCESS;
+               return CMD_FAILURE;
        }
 };
 
@@ -101,7 +100,7 @@ class ModuleSajoin : public Module
        
        virtual Version GetVersion()
        {
-               return Version(1,0,0,1,VF_VENDOR,API_VERSION);
+               return Version(1,1,0,1,VF_VENDOR,API_VERSION);
        }
        
 };