11 lines
No EOL
330 B
JavaScript
11 lines
No EOL
330 B
JavaScript
const ImageCommand = require("../../classes/imageCommand.js");
|
|
|
|
class InvertCommand extends ImageCommand {
|
|
static description = "Inverts an image";
|
|
static aliases = ["inverse", "negate", "negative"];
|
|
|
|
static noImage = "You need to provide an image to invert!";
|
|
static command = "invert";
|
|
}
|
|
|
|
module.exports = InvertCommand; |