hardlounge/src/plugins/inputs/invite.js

16 lines
401 B
JavaScript
Raw Normal View History

var Chan = require("../../models/chan");
exports.commands = ["invite"];
exports.input = function(network, chan, cmd, args) {
2014-09-13 17:29:45 -04:00
var irc = network.irc;
2014-09-13 17:29:45 -04:00
if (args.length === 2) {
2016-03-08 08:36:25 -05:00
irc.raw("INVITE", args[0], args[1]); // Channel provided in the command
} else if (args.length === 1 && chan.type === Chan.Type.CHANNEL) {
2016-03-08 08:36:25 -05:00
irc.raw("INVITE", args[0], chan.name); // Current channel
2014-09-13 17:29:45 -04:00
}
2016-03-06 04:24:56 -05:00
return true;
2014-09-13 17:29:45 -04:00
};