mrmBot-Matrix/commands/image-editing/pixelate.js
2021-05-24 14:31:44 -05:00

11 lines
323 B
JavaScript

const ImageCommand = require("../../classes/imageCommand.js");
class PixelateCommand extends ImageCommand {
static description = "Pixelates an image";
static aliases = ["pixel", "small"];
static noImage = "You need to provide an image to pixelate!";
static command = "resize";
}
module.exports = PixelateCommand;