diff options
| author | 2012-06-15 20:08:04 +0200 | |
|---|---|---|
| committer | 2012-06-30 00:06:27 +0200 | |
| commit | a9151705c34312aa2bb1880dcb3cbbae2970ad5a (patch) | |
| tree | 68137242c6f1b15d2aa44c76ac14e6ad83f3ec8b /src/modules/m_alltime.cpp | |
| parent | Remove unused channelmanager (diff) | |
m_alltime Add a missing space to the notice
Diffstat (limited to 'src/modules/m_alltime.cpp')
| -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); |
