cff4f1ce2c
Fixes #3122
12 lines
196 B
JavaScript
12 lines
196 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;
|
|
};
|