diff options
author | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-09-15 21:00:51 +0000 |
---|---|---|
committer | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-09-15 21:00:51 +0000 |
commit | 68592b0445ba7abe96c9fff04fa55482e5a389ab (patch) | |
tree | 8e90e6b80df919335becaf27804c61c254da87e2 /src/modules/hs_request.c | |
parent | 2ee049d7d87d85bd95d2d96b11346054cfabf527 (diff) |
Removed command position from Module::AddCommand(), it is no longer used because of OnPreCommand/OnPostCommand
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2505 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/modules/hs_request.c')
-rw-r--r-- | src/modules/hs_request.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/hs_request.c b/src/modules/hs_request.c index 7116b98ae..d6ecb4889 100644 --- a/src/modules/hs_request.c +++ b/src/modules/hs_request.c @@ -405,10 +405,10 @@ class HSRequest : public Module { me = this; - this->AddCommand(HOSTSERV, new CommandHSRequest(), MOD_HEAD); - this->AddCommand(HOSTSERV, new CommandHSActivate(), MOD_HEAD); - this->AddCommand(HOSTSERV, new CommandHSReject(), MOD_HEAD); - this->AddCommand(HOSTSERV, new CommandHSWaiting(), MOD_HEAD); + this->AddCommand(HOSTSERV, new CommandHSRequest()); + this->AddCommand(HOSTSERV, new CommandHSActivate()); + this->AddCommand(HOSTSERV, new CommandHSReject()); + this->AddCommand(HOSTSERV, new CommandHSWaiting()); ModuleManager::Attach(I_OnPreCommand, this); ModuleManager::Attach(I_OnSaveDatabase, this); |