From 1449b021a8a075a3e9cb76215bc309850ef9ca7f Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Wed, 11 Jan 2017 03:40:19 +0000 Subject: [PATCH] block_motd: Command names should be uppercase --- modules/block_motd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } }