diff --git a/PluralKit.Bot/Commands/SystemCommands.cs b/PluralKit.Bot/Commands/SystemCommands.cs index ce94e314..d4f2e72d 100644 --- a/PluralKit.Bot/Commands/SystemCommands.cs +++ b/PluralKit.Bot/Commands/SystemCommands.cs @@ -76,7 +76,7 @@ namespace PluralKit.Bot.Commands throw Errors.SystemNameTooLongError(newTag.Length); await _data.SaveSystem(ctx.System); - await ctx.Reply($"{Emojis.Success} System tag {(newTag != null ? "changed" : "cleared")}."); + await ctx.Reply($"{Emojis.Success} System tag {(newTag != null ? $"changed. Member names will now end with `{newTag.SanitizeMentions()}` when proxied." : "cleared")}."); await _proxyCache.InvalidateResultsForSystem(ctx.System); }