summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-30 16:17:45 +0000
committercyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-30 16:17:45 +0000
commit685edb99999068e799287d6f2178f4459ede108f (patch)
tree45ee2b77633f0a70a6f821b2739dacbb1521e7b6 /src
parentf62207f8d397f95e3151e463d069e534a3b304b4 (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/core/ss_main.c5
1 files changed, 5 insertions, 0 deletions
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);