fix: fix 'members' string in group limit warning

This commit is contained in:
spiral
2021-11-21 09:05:16 -05:00
parent 9c95ca2ed9
commit 99b81085ed

View File

@@ -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)