block_motd: Command names should be uppercase

This commit is contained in:
Kyle Fuller
2017-01-11 03:40:19 +00:00
parent 2d2672693a
commit 1449b021a8

View File

@@ -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);
}
}