thelounge/src/plugins/inputs/kill.js

12 lines
197 B
JavaScript
Raw Normal View History

2019-03-16 20:57:24 +01:00
"use strict";
exports.commands = ["kill"];
exports.input = function ({irc}, chan, cmd, args) {
2019-03-16 20:57:24 +01:00
if (args.length !== 0) {
irc.raw("KILL", args[0], args.slice(1).join(" "));
}
return true;
};