mrmBot-Matrix/commands/image-editing/deepfry.js
2021-08-08 22:46:10 -05:00

11 lines
No EOL
330 B
JavaScript

const ImageCommand = require("../../classes/imageCommand.js");
class DeepfryCommand extends ImageCommand {
static description = "Deep-fries an image";
static aliases = ["fry", "jpeg2", "nuke", "df"];
static noImage = "You need to provide an image to fry!";
static command = "deepfry";
}
module.exports = DeepfryCommand;