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

16 lines
396 B
JavaScript
Raw Normal View History

const ImageCommand = require("../../classes/imageCommand.js");
class WooWCommand extends ImageCommand {
params = {
vertical: true,
first: true
};
static description = "Mirrors the top of an image onto the bottom";
static aliases = ["magik5", "mirror3"];
2021-05-24 19:31:44 +00:00
static noImage = "You need to provide an image to mirror!";
static command = "mirror";
}
module.exports = WooWCommand;