thelounge/src/plugins/inputs/kill.js
2020-03-21 22:55:36 +02:00

12 lines
197 B
JavaScript

"use strict";
exports.commands = ["kill"];
exports.input = function ({irc}, chan, cmd, args) {
if (args.length !== 0) {
irc.raw("KILL", args[0], args.slice(1).join(" "));
}
return true;
};