From 99b81085ed2b3f3d39ed56f8a09a6a1294106177 Mon Sep 17 00:00:00 2001 From: spiral Date: Sun, 21 Nov 2021 09:05:16 -0500 Subject: [PATCH] fix: fix 'members' string in group limit warning --- PluralKit.Bot/Commands/Groups.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/Groups.cs b/PluralKit.Bot/Commands/Groups.cs index f629c60f..a7d21cc6 100644 --- a/PluralKit.Bot/Commands/Groups.cs +++ b/PluralKit.Bot/Commands/Groups.cs @@ -68,7 +68,7 @@ namespace PluralKit.Bot await ctx.Reply($"{Emojis.Success} Group created!", eb.Build()); if (existingGroupCount >= Limits.WarnThreshold(groupLimit)) - await ctx.Reply($"{Emojis.Warn} You are approaching the per-system group limit ({existingGroupCount} / {groupLimit} members). Please review your group list for unused or duplicate groups."); + await ctx.Reply($"{Emojis.Warn} You are approaching the per-system group limit ({existingGroupCount} / {groupLimit} groups). Please review your group list for unused or duplicate groups."); } public async Task RenameGroup(Context ctx, PKGroup target)