diff --git a/modules/block_motd.cpp b/modules/block_motd.cpp index 483ab687..d2602167 100644 --- a/modules/block_motd.cpp +++ b/modules/block_motd.cpp @@ -42,9 +42,9 @@ class CBlockMotd : public CModule { const CString sServer = sLine.Token(1); if (sServer.empty()) { - PutIRC("motd"); + PutIRC("MOTD"); } else { - PutIRC("motd " + sServer); + PutIRC("MOTD " + sServer); } }