11 lines
No EOL
338 B
JavaScript
11 lines
No EOL
338 B
JavaScript
import ImageCommand from "../../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";
|
|
}
|
|
|
|
export default WaaWCommand; |