thelounge/src/plugins/inputs/kick.js
2019-07-19 11:27:40 +01:00

27 lines
484 B
JavaScript

"use strict";
const Chan = require("../../models/chan");
const Msg = require("../../models/msg");
exports.commands = ["kick"];
exports.input = function({irc}, chan, cmd, args) {
if (chan.type !== Chan.Type.CHANNEL) {
chan.pushMessage(
this,
new Msg({
type: Msg.Type.ERROR,
text: `${cmd} command can only be used in channels.`,
})
);
return;
}
if (args.length !== 0) {
irc.raw("KICK", chan.name, args[0], args.slice(1).join(" "));
}
return true;
};