diff options
| author | 2013-05-14 16:24:08 -0700 | |
|---|---|---|
| committer | 2013-05-14 16:24:08 -0700 | |
| commit | 23e8bba13c55d33ce89d505780da36c9589e300a (patch) | |
| tree | 85a2e81cde272a0900b0e448d2d1fabdfd7e897e /src/xline.cpp | |
| parent | m_spanningtree UID handler: Fix parsing user modes (diff) | |
| parent | Add method for writing server notices. (diff) | |
| download | inspircd++-23e8bba13c55d33ce89d505780da36c9589e300a.tar.gz inspircd++-23e8bba13c55d33ce89d505780da36c9589e300a.tar.bz2 inspircd++-23e8bba13c55d33ce89d505780da36c9589e300a.zip | |
Merge pull request #523 from SaberUK/master+server-notice
Add method for writing server notices.
Diffstat (limited to 'src/xline.cpp')
| -rw-r--r-- | src/xline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xline.cpp b/src/xline.cpp index f50348c3c..fd82ea2df 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -534,7 +534,7 @@ void XLine::DefaultApply(User* u, const std::string &line, bool bancache) char sreason[MAXBUF]; snprintf(sreason, MAXBUF, "%s-Lined: %s", line.c_str(), this->reason.c_str()); if (!ServerInstance->Config->MoronBanner.empty()) - u->WriteServ("NOTICE %s :*** %s", u->nick.c_str(), ServerInstance->Config->MoronBanner.c_str()); + u->WriteNotice("*** " + ServerInstance->Config->MoronBanner); if (ServerInstance->Config->HideBans) ServerInstance->Users->QuitUser(u, line + "-Lined", sreason); |
