From 0abd64b354a016ff4c3cce283fdb0cf0f50874ab Mon Sep 17 00:00:00 2001 From: Ske Date: Sat, 25 Jan 2020 00:58:25 +0100 Subject: [PATCH] Fix punctuation error --- 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 1f4986c3..0ee7214b 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. Member names will now end with `{newTag.SanitizeMentions()}` when proxied." : "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); }