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

11 lines
345 B
JavaScript

const ImageCommand = require("../../classes/imageCommand.js");
class WaaWCommand extends ImageCommand {
static description = "Mirrors the right side of an image onto the left";
static aliases = ["magik3", "mirror"];
static noImage = "You need to provide an image to mirror!";
static command = "mirror";
}
module.exports = WaaWCommand;