diff options
author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-15 17:47:52 +0000 |
---|---|---|
committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-15 17:47:52 +0000 |
commit | ba47bf2f6f2fe04e50ca63b26f14ba1e524bee72 (patch) | |
tree | a00ce3d3e30bc4a7d96a0b174169cdd676af0135 /src/module.cpp | |
parent | 330d9ee9e782a4ed3e2de8ff3082cc5bbe7d6b9e (diff) |
HelpServ has been destroyed, +1000 points. Also fixed the argument order in the deprecated match_wild() function.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2074 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/module.cpp')
-rw-r--r-- | src/module.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/module.cpp b/src/module.cpp index cfec523b3..af002d94e 100644 --- a/src/module.cpp +++ b/src/module.cpp @@ -21,7 +21,6 @@ Module::Module(const std::string &mname, const std::string &creator) this->botHelp = NULL; this->operHelp = NULL; this->hostHelp = NULL; - this->helpHelp = NULL; this->type = THIRD; this->handle = NULL; @@ -123,14 +122,6 @@ Module::~Module() } } - for (current = HE_cmdTable[idx]; current; current = current->next) { - for (c = current->c; c; c = c->next) { - if ((c->mod_name) && (strcmp(c->mod_name, this->name.c_str()) == 0)) { - this->DelCommand(HELPSERV, c->name.c_str()); - } - } - } - for (current = OS_cmdTable[idx]; current; current = current->next) { for (c = current->c; c; c = c->next) { if ((c->mod_name) && (stricmp(c->mod_name, this->name.c_str()) == 0)) { |