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

15 lines
381 B
JavaScript

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