From a0f6ed6f899c6a4844dfe403f63080249a732749 Mon Sep 17 00:00:00 2001 From: Petal Ladenson Date: Sat, 9 Nov 2024 11:32:35 -0700 Subject: [PATCH] fix(bot): correct default values for id display split and caps --- 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)}."); }