summaryrefslogtreecommitdiff
path: root/src/cmd_mode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd_mode.cpp')
-rw-r--r--src/cmd_mode.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/cmd_mode.cpp b/src/cmd_mode.cpp
index c1d128bf9..545a14f8d 100644
--- a/src/cmd_mode.cpp
+++ b/src/cmd_mode.cpp
@@ -23,13 +23,9 @@ extern "C" command_t* init_command(InspIRCd* Instance)
return new cmd_mode(Instance);
}
-void cmd_mode::Handle (const char** parameters, int pcnt, userrec *user)
+CmdResult cmd_mode::Handle (const char** parameters, int pcnt, userrec *user)
{
- if (!user)
- return;
-
ServerInstance->Modes->Process(parameters, pcnt, user, false);
-
- return;
+ return CMD_SUCCESS;
}