diff options
| author | 2016-03-05 16:58:50 +0100 | |
|---|---|---|
| committer | 2016-03-05 16:58:50 +0100 | |
| commit | cee5a82d95fc3f5d3670ef483998bfc2d4a5a82e (patch) | |
| tree | d70d970fbde253cdc2e5a47343c758480e9bae71 /src/modules/m_spanningtree/fjoin.cpp | |
| parent | Merge pull request #1150 from johanna-a/conname_extban (diff) | |
| parent | Send NOTICEs to local channel members with Channel::WriteNotice() (diff) | |
| download | inspircd++-cee5a82d95fc3f5d3670ef483998bfc2d4a5a82e.tar.gz inspircd++-cee5a82d95fc3f5d3670ef483998bfc2d4a5a82e.tar.bz2 inspircd++-cee5a82d95fc3f5d3670ef483998bfc2d4a5a82e.zip | |
Merge branch 'master+chanwritenotice'
Diffstat (limited to 'src/modules/m_spanningtree/fjoin.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/fjoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/fjoin.cpp b/src/modules/m_spanningtree/fjoin.cpp index 0879e730a..74590adf8 100644 --- a/src/modules/m_spanningtree/fjoin.cpp +++ b/src/modules/m_spanningtree/fjoin.cpp @@ -266,7 +266,7 @@ void CommandFJoin::RemoveStatus(Channel* c) void CommandFJoin::LowerTS(Channel* chan, time_t TS, const std::string& newname) { if (Utils->AnnounceTSChange) - chan->WriteChannelWithServ(ServerInstance->Config->ServerName, "NOTICE %s :TS for %s changed from %lu to %lu", chan->name.c_str(), newname.c_str(), (unsigned long) chan->age, (unsigned long) TS); + chan->WriteNotice(InspIRCd::Format("TS for %s changed from %lu to %lu", newname.c_str(), (unsigned long) chan->age, (unsigned long) TS)); // While the name is equal in case-insensitive compare, it might differ in case; use the remote version chan->name = newname; |
