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

11 lines
345 B
JavaScript
Raw Normal View History

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"];
2021-05-24 19:31:44 +00:00
static noImage = "You need to provide an image to mirror!";
static command = "mirror";
}
module.exports = WaaWCommand;