hardlounge/src/plugins/inputs/kick.js

13 lines
195 B
JavaScript
Raw Normal View History

2014-09-13 21:29:45 +00:00
module.exports = function(network, chan, cmd, args) {
2015-09-30 22:39:57 +00:00
if (cmd !== "kick") {
2014-09-13 21:29:45 +00:00
return;
}
2016-03-06 09:24:56 +00:00
2014-09-13 21:29:45 +00:00
if (args.length !== 0) {
var irc = network.irc;
irc.kick(chan.name, args[0]);
}
2016-03-06 09:24:56 +00:00
return true;
2014-09-13 21:29:45 +00:00
};