thelounge/src/plugins/inputs/invite.js
2016-04-07 16:04:40 -04:00

14 lines
351 B
JavaScript

exports.commands = ["invite"];
exports.input = function(network, chan, cmd, args) {
var irc = network.irc;
if (args.length === 2) {
irc.raw("INVITE", args[0], args[1]); // Channel provided in the command
} else if (args.length === 1 && chan.type === "channel") {
irc.raw("INVITE", args[0], chan.name); // Current channel
}
return true;
};