diff options
Diffstat (limited to 'src/cmd_motd.cpp')
-rw-r--r-- | src/cmd_motd.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cmd_motd.cpp b/src/cmd_motd.cpp index f6c76dac4..6aaf1a9af 100644 --- a/src/cmd_motd.cpp +++ b/src/cmd_motd.cpp @@ -24,7 +24,6 @@ extern "C" DllExport command_t* init_command(InspIRCd* Instance) */ CmdResult cmd_motd::Handle (const char** parameters, int pcnt, userrec *user) { - if (!pcnt) - user->ShowMOTD(); + user->ShowMOTD(); return CMD_SUCCESS; } |