From ba47bf2f6f2fe04e50ca63b26f14ba1e524bee72 Mon Sep 17 00:00:00 2001 From: cyberbotx Date: Sun, 15 Feb 2009 17:47:52 +0000 Subject: 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 --- src/module.cpp | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/module.cpp') 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)) { -- cgit