mrmBot-Matrix/commands/image-editing/invert.js

11 lines
330 B
JavaScript

const ImageCommand = require("../../classes/imageCommand.js");
class InvertCommand extends ImageCommand {
static description = "Inverts an image";
static aliases = ["inverse", "negate", "negative"];
static noImage = "You need to provide an image to invert!";
static command = "invert";
}
module.exports = InvertCommand;