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

15 lines
379 B
JavaScript
Raw Normal View History

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