15 lines
381 B
JavaScript
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;
|