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

11 lines
338 B
JavaScript
Raw Normal View History

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