From 1960fa9dfd462d8041b6e452b4db5cc0eb2d9eea Mon Sep 17 00:00:00 2001 From: rladenson <78043712+rladenson@users.noreply.github.com> Date: Thu, 24 Nov 2022 21:35:14 -0700 Subject: [PATCH] fix(bot): Show correct command for proxy case (#500) --- PluralKit.Bot/Commands/Config.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/PluralKit.Bot/Commands/Config.cs b/PluralKit.Bot/Commands/Config.cs index 589d77ca..ecf960e5 100644 --- a/PluralKit.Bot/Commands/Config.cs +++ b/PluralKit.Bot/Commands/Config.cs @@ -89,8 +89,8 @@ public class Config )); items.Add(new( - "Case sensitive proxy tags", - "If proxy tags should be case sensitive", + "Proxy case", + "Whether proxy tags are case sensitive", EnabledDisabled(ctx.Config.CaseSensitiveProxyTags), "enabled" )); @@ -395,8 +395,8 @@ public class Config { if (!ctx.HasNext()) { - if (ctx.Config.CaseSensitiveProxyTags) { await ctx.Reply("Proxy tags are currently case sensitive"); } - else { await ctx.Reply("Proxy tags are currently case insensitive"); } + if (ctx.Config.CaseSensitiveProxyTags) { await ctx.Reply("Proxy tags are currently case **sensitive**."); } + else { await ctx.Reply("Proxy tags are currently case **insensitive**."); } return; } @@ -404,13 +404,13 @@ public class Config { await ctx.Repository.UpdateSystemConfig(ctx.System.Id, new() { CaseSensitiveProxyTags = true }); - await ctx.Reply("Proxy tags are now case sensitive"); + await ctx.Reply("Proxy tags are now case sensitive."); } else { await ctx.Repository.UpdateSystemConfig(ctx.System.Id, new() { CaseSensitiveProxyTags = false }); - await ctx.Reply("Proxy tags are now case insensitive"); + await ctx.Reply("Proxy tags are now case insensitive."); } } } \ No newline at end of file