aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_helpop.cpp
diff options
context:
space:
mode:
authorGravatar brain2006-09-06 17:58:59 +0000
committerGravatar brain2006-09-06 17:58:59 +0000
commit71ad308979d9c9129507fdf85d4305fd12e18bea (patch)
tree6aaebc6d1fb6e4c49a2adf474bf4592e2d89a5e8 /src/modules/m_helpop.cpp
parentCommand result codes. This isnt finished yet, still got to do most of the mod... (diff)
All commands now return results CMD_FAILURE or CMD_SUCCESS
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5150 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_helpop.cpp')
-rw-r--r--src/modules/m_helpop.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/modules/m_helpop.cpp b/src/modules/m_helpop.cpp
index 89ad243b6..dc124cd46 100644
--- a/src/modules/m_helpop.cpp
+++ b/src/modules/m_helpop.cpp
@@ -69,18 +69,18 @@ class cmd_helpop : public command_t
syntax = "[?|!]<any-text>";
}
- void Handle (const char** parameters, int pcnt, userrec *user)
+ CmdResult Handle (const char** parameters, int pcnt, userrec *user)
{
char a[MAXBUF];
std::string output = " ";
if (!helpop)
- return;
+ return CMD_FAILURE;
if (pcnt < 1)
{
do_helpop(NULL,pcnt,user);
- return;
+ return CMD_SUCCESS;
}
if (*parameters[0] == '!')
@@ -126,6 +126,8 @@ class cmd_helpop : public command_t
sendtohelpop(user, pcnt, parameters);
}
}
+
+ return CMD_SUCCESS;
}