diff --git a/PluralKit.Bot/Commands/SystemFront.cs b/PluralKit.Bot/Commands/SystemFront.cs index 201a258a..b813ced3 100644 --- a/PluralKit.Bot/Commands/SystemFront.cs +++ b/PluralKit.Bot/Commands/SystemFront.cs @@ -100,7 +100,7 @@ namespace PluralKit.Bot $"**{membersStr}** ({sw.Timestamp.FormatZoned(system.Zone)}, {switchSince.FormatDuration()} ago)\n"; } - if (sb.Length + stringToAdd.Length >= 1024) + if (sb.Length + stringToAdd.Length >= 4096) break; sb.Append(stringToAdd); }