mrmBot-Matrix/commands/image-editing/waaw.js
2023-03-15 10:09:09 -04:00

11 lines
354 B
JavaScript

import ImageCommand from "../../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/GIF to mirror!";
static command = "mirror";
}
export default WaaWCommand;