Merge pull request #76 from thelounge/astorije/invite-current-channel

Add a simplified way to invite a user in the current channel
This commit is contained in:
Jérémie Astori 2016-02-20 11:37:57 -05:00
commit 5edd825b00

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
}
};