thelounge/src/plugins/inputs/disconnect.js

8 lines
175 B
JavaScript
Raw Normal View History

2016-04-14 10:56:02 +02:00
exports.commands = ["disconnect"];
exports.input = function(network, chan, cmd, args) {
var quitMessage = args[0] ? args.join(" ") : "";
network.irc.quit(quitMessage);
};