summaryrefslogtreecommitdiff
path: root/src/cmd_motd.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-10-01 11:49:37 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-10-01 11:49:37 +0000
commitad57faf4a1f7d48c4f97941bb141a698d69cb3ce (patch)
treedcc5664ca0f0572046cdf435e5c74913da3934b1 /src/cmd_motd.cpp
parent3163a3beececb4e73b1c9d05fa1d4afff87038fa (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.cpp3
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;
}