From 58b4e09e83fd157354297ad19f8f887575bd0002 Mon Sep 17 00:00:00 2001 From: James Vega Date: Thu, 30 Dec 2004 18:07:33 +0000 Subject: [PATCH] Connect has a status reply, why not have one for disconnect --- plugins/Network.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/Network.py b/plugins/Network.py index 721a2f84f..a7a360808 100644 --- a/plugins/Network.py +++ b/plugins/Network.py @@ -109,6 +109,7 @@ class Network(callbacks.Privmsg): otherIrc.queueMsg(ircmsgs.quit(quitMsg)) otherIrc.die() conf.supybot.networks().discard(otherIrc.network) + irc.replySuccess('Disconnection to %s initiated.' % otherIrc.network) disconnect = wrap(disconnect, ['owner', 'networkIrc', additional('text')]) def reconnect(self, irc, msg, args, otherIrc, quitMsg):