From f6f90914673cab56f89e1de460a26495a51a75ea Mon Sep 17 00:00:00 2001 From: Angel <59970528+angeld23@users.noreply.github.com> Date: Fri, 24 Jun 2022 18:22:07 -0400 Subject: [PATCH] Make help message for &stretch accurate to the aspect ratio it applies (#284) --- commands/image-editing/stretch.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/image-editing/stretch.js b/commands/image-editing/stretch.js index db68e59..0f89814 100644 --- a/commands/image-editing/stretch.js +++ b/commands/image-editing/stretch.js @@ -5,8 +5,8 @@ class StretchCommand extends ImageCommand { stretch: true }; - static description = "Stretches an image to a 4:3 aspect ratio"; - static aliases = ["aspect", "ratio", "aspect43", "43"]; + static description = "Stretches an image to a 1:1 aspect ratio"; + static aliases = ["aspect", "ratio", "aspect11", "11"]; static noImage = "You need to provide an image/GIF to stretch!"; static command = "resize";