From ecfc500cfa772bd3e94434a9123a563927e069fa Mon Sep 17 00:00:00 2001 From: rladenson Date: Fri, 8 Nov 2024 12:29:37 -0700 Subject: [PATCH] fix: some config settings have the wrong defaults --- PluralKit.Bot/Commands/Config.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PluralKit.Bot/Commands/Config.cs b/PluralKit.Bot/Commands/Config.cs index 3e081f38..dc869a71 100644 --- a/PluralKit.Bot/Commands/Config.cs +++ b/PluralKit.Bot/Commands/Config.cs @@ -474,7 +474,7 @@ public class Config return; } - var newVal = ctx.MatchToggle(true); + var newVal = ctx.MatchToggle(false); await ctx.Repository.UpdateSystemConfig(ctx.System.Id, new() { HidDisplaySplit = newVal }); await ctx.Reply($"Splitting of 6-character IDs with a hyphen is now {EnabledDisabled(newVal)}."); } @@ -488,7 +488,7 @@ public class Config return; } - var newVal = ctx.MatchToggle(true); + var newVal = ctx.MatchToggle(false); await ctx.Repository.UpdateSystemConfig(ctx.System.Id, new() { HidDisplayCaps = newVal }); await ctx.Reply($"Displaying IDs as capital letters is now {EnabledDisabled(newVal)}."); }