1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 06:16:37 +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
+2 -1
View File
@@ -263,7 +263,8 @@ void IRCDProto::SendGlobops(const BotInfo *source, const char *fmt, ...)
void IRCDProto::SendSquit(Server *s, const Anope::string &message)
{
UplinkSocket::Message() << "SQUIT " << s->GetName() << " :" << message;
UplinkSocket::Message() << "SQUIT " << s->GetSID() << " :" << message;
s->Delete(message);
}
void IRCDProto::SendNickChange(const User *u, const Anope::string &newnick)