From 685edb99999068e799287d6f2178f4459ede108f Mon Sep 17 00:00:00 2001 From: cyberbotx Date: Sun, 30 Nov 2008 16:17:45 +0000 Subject: [PATCH] Set ss_main to be permanent, as well as set it's type, author, and version. git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1821 5417fbe8-f217-4b02-8779-1006273d7864 --- src/core/ss_main.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/core/ss_main.c b/src/core/ss_main.c index bfdb2e270..10aeec9cb 100644 --- a/src/core/ss_main.c +++ b/src/core/ss_main.c @@ -27,6 +27,11 @@ class SSMain : public Module { Command *c; + this->SetAuthor("Anope"); + this->SetVersion("$Id$"); + this->SetType(CORE); + this->SetPermanent(true); + c = createCommand("HELP", do_help, NULL, -1, -1, -1, -1, -1); this->AddCommand(cmdTable, c, MOD_HEAD);