diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-02 00:48:48 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-02 00:48:48 +0000 |
commit | 24731c63b6320be22f7b3220236271fa7476b975 (patch) | |
tree | 615959bfd36dd30bc5c067c4501dbfb8a2e8cb8b /src/modules/m_remove.cpp | |
parent | 79f9faeec84fbcb704b45811b9851148ab1cb20b (diff) |
Add Module* creator to Command and ModeHandler
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11631 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_remove.cpp')
-rw-r--r-- | src/modules/m_remove.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index c86565b5f..49c74d9ce 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -206,9 +206,9 @@ class RemoveBase class CommandRemove : public Command, public RemoveBase { public: - CommandRemove(InspIRCd* Instance, bool& snk) : Command(Instance, "REMOVE", 0, 2, 2, false, 0), RemoveBase(Instance, snk) + CommandRemove(InspIRCd* Instance, Module* Creator, bool& snk) + : Command(Instance, Creator, "REMOVE", 0, 2, 2, false, 0), RemoveBase(Instance, snk) { - this->source = "m_remove.so"; syntax = "<nick> <channel> [<reason>]"; TRANSLATE4(TR_NICK, TR_TEXT, TR_TEXT, TR_END); } @@ -224,9 +224,9 @@ class CommandRemove : public Command, public RemoveBase class CommandFpart : public Command, public RemoveBase { public: - CommandFpart(InspIRCd* Instance, bool& snk) : Command(Instance, "FPART", 0, 2), RemoveBase(Instance, snk) + CommandFpart(InspIRCd* Instance, Module* Creator, bool& snk) + : Command(Instance, Creator, "FPART", 0, 2), RemoveBase(Instance, snk) { - this->source = "m_remove.so"; syntax = "<channel> <nick> [<reason>]"; } @@ -245,7 +245,7 @@ class ModuleRemove : public Module public: ModuleRemove(InspIRCd* Me) - : Module(Me), cmd1(Me, supportnokicks), cmd2(Me, supportnokicks) + : Module(Me), cmd1(Me, this, supportnokicks), cmd2(Me, this, supportnokicks) { ServerInstance->AddCommand(&cmd1); ServerInstance->AddCommand(&cmd2); |