Removed the die on the IRC object in relay disconnect because that makes all the plugins die.

This commit is contained in:
Jeremy Fincher 2003-10-24 23:15:04 +00:00
parent 39349302a6
commit 218e53b409

View File

@ -220,7 +220,8 @@ class Relay(callbacks.Privmsg):
return return
network = privmsgs.getArgs(args) network = privmsgs.getArgs(args)
otherIrc = self.ircs[network] otherIrc = self.ircs[network]
otherIrc.die() otherIrc.driver.die()
world.ircs.remove(otherIrc)
del self.ircs[network] del self.ircs[network]
del self.abbreviations[otherIrc] del self.abbreviations[otherIrc]
irc.reply(msg, conf.replySuccess) irc.reply(msg, conf.replySuccess)