From a988b266ec27194b7b551d854fc30ec21d4560b4 Mon Sep 17 00:00:00 2001 From: Essem Date: Sat, 5 Mar 2022 23:08:08 -0600 Subject: [PATCH] Some edits --- commands/image-editing/avs4you.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/commands/image-editing/avs4you.js b/commands/image-editing/avs4you.js index 34c48fb..3e4555c 100644 --- a/commands/image-editing/avs4you.js +++ b/commands/image-editing/avs4you.js @@ -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;