diff options
| author | 2018-08-05 17:18:43 +0100 | |
|---|---|---|
| committer | 2018-08-05 17:18:43 +0100 | |
| commit | 54a15b0185fc53d741bc519f125aa531643dbae2 (patch) | |
| tree | de38b47f20067f59ba777316a21e056aecbff07f /src/modules/m_spanningtree/fjoin.cpp | |
| parent | Remove support for static modules. (diff) | |
| download | inspircd++-54a15b0185fc53d741bc519f125aa531643dbae2.tar.gz inspircd++-54a15b0185fc53d741bc519f125aa531643dbae2.tar.bz2 inspircd++-54a15b0185fc53d741bc519f125aa531643dbae2.zip | |
Make the FJOIN timestamp message easier for users to understand.
Diffstat (limited to 'src/modules/m_spanningtree/fjoin.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/fjoin.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/fjoin.cpp b/src/modules/m_spanningtree/fjoin.cpp index cfbaeb917..0f7f5814c 100644 --- a/src/modules/m_spanningtree/fjoin.cpp +++ b/src/modules/m_spanningtree/fjoin.cpp @@ -276,7 +276,8 @@ void CommandFJoin::RemoveStatus(Channel* c) void CommandFJoin::LowerTS(Channel* chan, time_t TS, const std::string& newname) { if (Utils->AnnounceTSChange) - chan->WriteNotice(InspIRCd::Format("TS for %s changed from %lu to %lu", newname.c_str(), (unsigned long) chan->age, (unsigned long) TS)); + chan->WriteNotice(InspIRCd::Format("Creation time of %s changed from %s to %s", newname.c_str(), + InspIRCd::TimeString(chan->age).c_str(), InspIRCd::TimeString(TS).c_str())); // While the name is equal in case-insensitive compare, it might differ in case; use the remote version chan->name = newname; |
