Added custom quit message functionality. Resolves erming/shout#71

This commit is contained in:
Kerry Peterson 2014-09-16 19:46:14 -06:00
parent 044b61be29
commit 6ed1a70f1c

View file

@ -7,11 +7,12 @@ module.exports = function(network, chan, cmd, args) {
var client = this;
var irc = network.irc;
var quitMessage = args[0] ? args.join(" ") : "";
client.networks = _.without(client.networks, network);
client.emit("quit", {
network: network.id
});
irc.quit();
irc.quit(quitMessage);
};