From 03dd91ee9ea6fe00fa4d2c314500c52faee33ab2 Mon Sep 17 00:00:00 2001 From: Ske Date: Sun, 3 Nov 2019 13:37:36 +0100 Subject: [PATCH] Update tag change message with more information --- PluralKit.Bot/Commands/SystemCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }