15 lines
No EOL
379 B
JavaScript
15 lines
No EOL
379 B
JavaScript
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"];
|
|
|
|
static noImage = "You need to provide an image to mirror!";
|
|
static command = "mirror";
|
|
}
|
|
|
|
module.exports = HooHCommand; |