diff options
author | Adam <Adam@anope.org> | 2013-07-26 07:36:17 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-07-26 07:38:42 -0400 |
commit | 2450a64bf4dc55635c9f4c1c829f149dc6621b41 (patch) | |
tree | e946c4a76eb841b80671d6da6d6ad3e3a56a0711 /src/messages.cpp | |
parent | b48293a6327a5e28baf528cda004c1d5aeea872d (diff) |
Interally quit servers when juped
Diffstat (limited to 'src/messages.cpp')
-rw-r--r-- | src/messages.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/messages.cpp b/src/messages.cpp index a0c5e6dfb..a41cd6ba3 100644 --- a/src/messages.cpp +++ b/src/messages.cpp @@ -375,12 +375,10 @@ void SQuit::Run(MessageSource &source, const std::vector<Anope::string> ¶ms) if (!s) { - Log() << "SQUIT for nonexistent server " << params[0]; + Log(LOG_DEBUG) << "SQUIT for nonexistent server " << params[0]; return; } - FOREACH_MOD(OnServerQuit, (s)); - s->Delete(s->GetName() + " " + s->GetUplink()->GetName()); } |