Add a simplified way to invite a user in the current channel

This commit is contained in:
Jérémie Astori 2016-02-20 05:21:21 +00:00
parent 761958e3ee
commit eb794ab080

View file

@ -2,8 +2,12 @@ module.exports = function(network, chan, cmd, args) {
if (cmd !== "invite") {
return;
}
var irc = network.irc;
if (args.length === 2) {
irc.invite(args[0], args[1]);
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
}
};