From cac30a24a2549cf98aa5860429870ec7186ebf5e Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sun, 1 Feb 2026 22:54:24 -0600 Subject: [PATCH] Fixed broken settings descriptions --- KfChatDotNetBot/Settings/BuiltIn.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/KfChatDotNetBot/Settings/BuiltIn.cs b/KfChatDotNetBot/Settings/BuiltIn.cs index 98560ef..f80fce3 100644 --- a/KfChatDotNetBot/Settings/BuiltIn.cs +++ b/KfChatDotNetBot/Settings/BuiltIn.cs @@ -414,11 +414,11 @@ public static class BuiltIn public static string KasinoGuessWhatNumberCleanupDelay = "Kasino.GuessWhatNumber.CleanupDelay"; [BuiltInSetting("Delay in milliseconds before cleaning up the Keno board", SettingValueType.Text, "30000", WholeNumberRegex)] public static string KasinoKenoCleanupDelay = "Kasino.Keno.CleanupDelay"; - [BuiltInSetting("Delay in milliseconds before cleaning up the keno board and result", SettingValueType.Text, "60000", WholeNumberRegex)] + [BuiltInSetting("Delay in milliseconds before cleaning up the Mines board and result", SettingValueType.Text, "60000", WholeNumberRegex)] public static string KasinoMinesCleanupDelay = "Kasino.Mines.CleanupDelay"; - [BuiltInSetting("Delay in milliseconds before cleaning up the mines command messages", SettingValueType.Text, "60000", WholeNumberRegex)] + [BuiltInSetting("Delay in milliseconds before cleaning up the Planes command messages", SettingValueType.Text, "60000", WholeNumberRegex)] public static string KasinoPlanesCleanupDelay = "Kasino.Planes.CleanupDelay"; - [BuiltInSetting("Delay in milliseconds between each check to see whether tehre's messages to be deleted", SettingValueType.Text, "1000", WholeNumberRegex)] + [BuiltInSetting("Delay in milliseconds between each check to see whether there's messages to be deleted", SettingValueType.Text, "1000", WholeNumberRegex)] public static string BotScheduledDeletionInterval = "Bot.ScheduledDeletionInterval"; [BuiltInSetting("Disable the conversation summaries feature", SettingValueType.Boolean, "false", BooleanRegex)] public static string DiscordDisableConversationSummaries = "Discord.DisableConversationSummaries";