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:
commit
5edd825b00
@ -2,8 +2,12 @@ module.exports = function(network, chan, cmd, args) {
|
|||||||
if (cmd !== "invite") {
|
if (cmd !== "invite") {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var irc = network.irc;
|
var irc = network.irc;
|
||||||
|
|
||||||
if (args.length === 2) {
|
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
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user