thelounge/src/plugins/inputs/kill.js

12 lines
196 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) {
if (args.length !== 0) {
irc.raw("KILL", args[0], args.slice(1).join(" "));
}
return true;
};