thelounge/src/plugins/inputs/invite.js

16 lines
345 B
JavaScript
Raw Normal View History

2014-09-13 23:29:45 +02:00
module.exports = function(network, chan, cmd, args) {
2015-10-01 00:39:57 +02:00
if (cmd !== "invite") {
2014-09-13 23:29:45 +02:00
return;
}
2014-09-13 23:29:45 +02:00
var irc = network.irc;
2014-09-13 23:29:45 +02:00
if (args.length === 2) {
irc.invite(args[0], args[1]); // Channel provided in the command
} else if (args.length === 1 && chan.type === "channel") {
irc.invite(args[0], chan.name); // Current channel
2014-09-13 23:29:45 +02:00
}
2016-03-06 10:24:56 +01:00
return true;
2014-09-13 23:29:45 +02:00
};