diff options
| author | 2020-01-24 21:14:35 +0000 | |
|---|---|---|
| committer | 2020-01-24 21:14:35 +0000 | |
| commit | 868dc21ffbf73921f24ba0c31708feb21556dae6 (patch) | |
| tree | 3800808ef965343a838b10e0ae0dc50f80933859 /src/modules/m_opermotd.cpp | |
| parent | dccallow: use IsCTCP instead of parsing the message manually. (diff) | |
Remove the preceding - in messages sent by opermotd and showfile.
Diffstat (limited to 'src/modules/m_opermotd.cpp')
| -rw-r--r-- | src/modules/m_opermotd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_opermotd.cpp b/src/modules/m_opermotd.cpp index e0120c4dd..5c62bf6fa 100644 --- a/src/modules/m_opermotd.cpp +++ b/src/modules/m_opermotd.cpp @@ -75,7 +75,7 @@ class CommandOpermotd : public Command for (file_cache::const_iterator i = opermotd.begin(); i != opermotd.end(); ++i) { - user->WriteRemoteNumeric(RPL_OMOTD, InspIRCd::Format("- %s", i->c_str())); + user->WriteRemoteNumeric(RPL_OMOTD, InspIRCd::Format(" %s", i->c_str())); } user->WriteRemoteNumeric(RPL_ENDOFOMOTD, "End of OPERMOTD"); |
