From cf688bd61b547814fb31b90e8af44ef6408647d7 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sat, 11 Oct 2025 01:38:10 -0500 Subject: [PATCH] Disabled Planes for now --- KfChatDotNetBot/Commands/KasinoGambaCommands.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/KfChatDotNetBot/Commands/KasinoGambaCommands.cs b/KfChatDotNetBot/Commands/KasinoGambaCommands.cs index ecd1ce3..7d080b2 100644 --- a/KfChatDotNetBot/Commands/KasinoGambaCommands.cs +++ b/KfChatDotNetBot/Commands/KasinoGambaCommands.cs @@ -293,6 +293,9 @@ public class Planes : ICommand public async Task RunCommand(ChatBot botInstance, MessageModel message, UserDbModel user, GroupCollection arguments, CancellationToken ctx) { + await botInstance.SendChatMessageAsync( + "Planes has been temporarily disabled until the bugs are finally sorted.", true); + return; var cleanupDelay = TimeSpan.FromMilliseconds((await SettingsProvider.GetValueAsync(BuiltIn.Keys.KasinoPlanesCleanupDelay)).ToType()); var logger = LogManager.GetCurrentClassLogger(); if (!arguments.TryGetValue("amount", out var amount))