diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-05-18 14:29:04 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-05-18 14:29:04 +0000 |
commit | 1fa86207eda4c5eee0547beb5cb2b94a16a05609 (patch) | |
tree | d2318b2849b8373a81e51f68a8e52bff109fabfa | |
parent | d59e218966b02a75a12beef3a43dd5d4bd894639 (diff) |
Fixy
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9731 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/snomasks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/snomasks.cpp b/src/snomasks.cpp index 91e554dd6..f4dfdc1e1 100644 --- a/src/snomasks.cpp +++ b/src/snomasks.cpp @@ -127,7 +127,7 @@ void Snomask::Flush() if (this->LastMessage.empty()) return; - a->WriteServ("NOTICE %s :*** %s: %s", a->nick, this->Description.c_str(), this->LastMessage.c_str()); + ServerInstance->Logs->Log("snomask", DEFAULT, "%s: %s", this->Description.c_str(), this->LastMessage.c_str()); if (Count > 1) ServerInstance->Logs->Log("snomask", DEFAULT, "%s: (last message repeated %u times)", this->Description.c_str(), Count); |