diff options
| author | 2006-10-01 11:49:37 +0000 | |
|---|---|---|
| committer | 2006-10-01 11:49:37 +0000 | |
| commit | ad57faf4a1f7d48c4f97941bb141a698d69cb3ce (patch) | |
| tree | dcc5664ca0f0572046cdf435e5c74913da3934b1 /src/cmd_motd.cpp | |
| parent | Fix typo reported by pippijn (diff) | |
Try this w00t
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5363 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_motd.cpp')
| -rw-r--r-- | src/cmd_motd.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmd_motd.cpp b/src/cmd_motd.cpp index 424a38794..551d76c9e 100644 --- a/src/cmd_motd.cpp +++ b/src/cmd_motd.cpp @@ -26,6 +26,7 @@ extern "C" command_t* init_command(InspIRCd* Instance) */ CmdResult cmd_motd::Handle (const char** parameters, int pcnt, userrec *user) { - user->ShowMOTD(); + if (!pcnt) + user->ShowMOTD(); return CMD_SUCCESS; } |
