Small tweaks

This commit is contained in:
Essem 2022-03-09 13:30:18 -06:00
parent 3232e6fc72
commit 5b2b3549b4
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C
3 changed files with 37 additions and 36 deletions

View file

@ -1,18 +1,18 @@
import ImageCommand from "../../classes/imageCommand.js";
class SpeechbubbleCommand extends ImageCommand {
params = {
water: "./assets/images/speechbubble.png",
gravity: "north",
resize: true,
yscale: 0.2,
};
class SpeechBubbleCommand extends ImageCommand {
params = {
water: "./assets/images/speechbubble.png",
gravity: "north",
resize: true,
yscale: 0.2,
};
static description = "Adds a speech bubble to the image.";
static aliases = ["speech","speechbubble"];
static description = "Adds a speech bubble to an image";
static aliases = ["speech", "sb"];
static noImage = "You need to provide an image/GIF to add a speech bubble."
static command = "watermark";
static noImage = "You need to provide an image/GIF to add a speech bubble!";
static command = "watermark";
}
export default SpeechbubbleCommand;
export default SpeechBubbleCommand;