11 lines
No EOL
345 B
JavaScript
11 lines
No EOL
345 B
JavaScript
const ImageCommand = require("../../classes/imageCommand.js");
|
|
|
|
class WaaWCommand extends ImageCommand {
|
|
static description = "Mirrors the right side of an image onto the left";
|
|
static aliases = ["magik3", "mirror"];
|
|
|
|
static noImage = "You need to provide an image to mirror!";
|
|
static command = "mirror";
|
|
}
|
|
|
|
module.exports = WaaWCommand; |