15 lines
379 B
JavaScript
15 lines
379 B
JavaScript
import ImageCommand from "../../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/GIF to mirror!";
|
|
static command = "mirror";
|
|
}
|
|
|
|
export default HaaHCommand;
|