diff options
| author | 2006-09-06 17:58:59 +0000 | |
|---|---|---|
| committer | 2006-09-06 17:58:59 +0000 | |
| commit | 71ad308979d9c9129507fdf85d4305fd12e18bea (patch) | |
| tree | 6aaebc6d1fb6e4c49a2adf474bf4592e2d89a5e8 /src/modules/m_check.cpp | |
| parent | Command 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_check.cpp')
| -rw-r--r-- | src/modules/m_check.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/m_check.cpp b/src/modules/m_check.cpp index d09793489..4f153d496 100644 --- a/src/modules/m_check.cpp +++ b/src/modules/m_check.cpp @@ -35,7 +35,7 @@ class cmd_check : public command_t syntax = "<nickname>|<ip>|<hostmask>|<channel>"; } - void Handle (const char** parameters, int pcnt, userrec *user) + CmdResult Handle (const char** parameters, int pcnt, userrec *user) { userrec *targuser; chanrec *targchan; @@ -175,6 +175,8 @@ class cmd_check : public command_t } user->WriteServ(checkstr + " END " + std::string(parameters[0])); + + return CMD_SUCCESS; } }; |
