Add a simplified way to invite a user in the current channel
This commit is contained in:
parent
761958e3ee
commit
eb794ab080
@ -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
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user