diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-06-15 20:08:04 +0200 |
---|---|---|
committer | Robin Burchell <robin+git@viroteck.net> | 2012-06-30 00:06:27 +0200 |
commit | a9151705c34312aa2bb1880dcb3cbbae2970ad5a (patch) | |
tree | 68137242c6f1b15d2aa44c76ac14e6ad83f3ec8b /src/modules | |
parent | f36892a2d478cb37e00c36dceb05e24852c784da (diff) |
m_alltime Add a missing space to the notice
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_alltime.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_alltime.cpp b/src/modules/m_alltime.cpp index aba8fe7fe..7012fde7e 100644 --- a/src/modules/m_alltime.cpp +++ b/src/modules/m_alltime.cpp @@ -38,7 +38,7 @@ class CommandAlltime : public Command time_t now = ServerInstance->Time(); strftime(fmtdate, sizeof(fmtdate), "%Y-%m-%d %H:%M:%S", gmtime(&now)); - std::string msg = ":" + std::string(ServerInstance->Config->ServerName.c_str()) + " NOTICE " + user->nick + " :System time is " + fmtdate + "(" + ConvToStr(ServerInstance->Time()) + ") on " + ServerInstance->Config->ServerName; + std::string msg = ":" + std::string(ServerInstance->Config->ServerName.c_str()) + " NOTICE " + user->nick + " :System time is " + fmtdate + " (" + ConvToStr(ServerInstance->Time()) + ") on " + ServerInstance->Config->ServerName; user->SendText(msg); |