Some edits

This commit is contained in:
Essem 2022-03-05 23:08:08 -06:00
parent a7b60548d0
commit a988b266ec
No known key found for this signature in database
GPG Key ID: 7D497397CC3A2A8C
1 changed files with 9 additions and 9 deletions

View File

@ -1,17 +1,17 @@
import ImageCommand from "../../classes/imageCommand.js";
class AVSCommand extends ImageCommand {
params = {
water: "./assets/images/avs4you.png",
gravity: 5,
resize: true
};
params = {
water: "./assets/images/avs4you.png",
gravity: 5,
resize: true
};
static description = "Adds the avs4you watermark to an image";
static aliases = ["avs4you"];
static description = "Adds the avs4you watermark to an image";
static aliases = ["a4y", "avs"];
static noImage = "You need to provide an image/GIF to add a avs4you watermark!";
static command = "watermark";
static noImage = "You need to provide an image/GIF to add an avs4you watermark!";
static command = "watermark";
}
export default AVSCommand;