thelounge/src/plugins/inputs/kick.js
2016-04-07 16:04:40 -04:00

11 lines
194 B
JavaScript

exports.commands = ["kick"];
exports.input = function(network, chan, cmd, args) {
if (args.length !== 0) {
var irc = network.irc;
irc.raw("KICK", chan.name, args[0]);
}
return true;
};