1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 12:03:14 +02:00

Interally quit servers when juped

This commit is contained in:
Adam
2013-07-26 07:36:17 -04:00
parent b48293a632
commit 2450a64bf4
5 changed files with 15 additions and 6 deletions
+1 -3
View File
@@ -375,12 +375,10 @@ void SQuit::Run(MessageSource &source, const std::vector<Anope::string> &params)
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());
}