]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_sapart.cpp
(Bigger than it looks, i did this with perl inplace edit) -- commands now take an...
[user/henk/code/inspircd.git] / src / modules / m_sapart.cpp
index b8a218bc33bd26f653cd309cc48bc20b939906c5..590c22c675b38a45bee247ae496539fbc880f143 100644 (file)
@@ -32,7 +32,7 @@ extern InspIRCd* ServerInstance;
 class cmd_sapart : public command_t
 {
  public:
      cmd_sapart () : command_t("SAPART", 'o', 2)
cmd_sapart (InspIRCd* Instance) : command_t(Instance,"SAPART", 'o', 2)
        {
                this->source = "m_sapart.so";
                syntax = "<nick> <channel>";
@@ -65,7 +65,7 @@ class ModuleSapart : public Module
                : Module::Module(Me)
        {
                
-               mycommand = new cmd_sapart();
+               mycommand = new cmd_sapart(ServerInstance);
                ServerInstance->AddCommand(mycommand);
        }