From 2d26fee5f5879c46e85ba8b102ad676576ebb032 Mon Sep 17 00:00:00 2001 From: Ouroboros <66399070+vmorrisonwood@users.noreply.github.com> Date: Sat, 27 Jan 2024 01:00:20 +0000 Subject: [PATCH] fix(bot): correct inconsistencies in group avatar/banner messages (#607) --- PluralKit.Bot/Commands/Groups.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PluralKit.Bot/Commands/Groups.cs b/PluralKit.Bot/Commands/Groups.cs index ae401fcd..a16fe9e5 100644 --- a/PluralKit.Bot/Commands/Groups.cs +++ b/PluralKit.Bot/Commands/Groups.cs @@ -300,7 +300,7 @@ public class Groups else { throw new PKSyntaxError( - "This group does not have an icon set. Set one by attaching an image to this command, or by passing an image URL or @mention."); + "This group does not have an avatar set. Set one by attaching an image to this command, or by passing an image URL or @mention."); } } @@ -364,7 +364,7 @@ public class Groups else { throw new PKSyntaxError( - "This group does not have a banner image set. Set one by attaching an image to this command, or by passing an image URL or @mention."); + "This group does not have a banner image set. Set one by attaching an image to this command, or by passing an image URL."); } }