From f1ab9cfcdd430c6e6f177618881a88b0249ed258 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Thu, 19 Feb 2026 20:27:07 -0600 Subject: [PATCH] Add auto delete to VIP message --- KfChatDotNetBot/Services/BotCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Services/BotCommands.cs b/KfChatDotNetBot/Services/BotCommands.cs index f1b1e9e..bd68467 100644 --- a/KfChatDotNetBot/Services/BotCommands.cs +++ b/KfChatDotNetBot/Services/BotCommands.cs @@ -178,7 +178,7 @@ internal class BotCommands _logger.Info($"Payout is {payout:N2}"); await _bot.SendChatMessageAsync( $"🤑🤑 {user.FormatUsername()} has leveled up to to {newLevel.VipLevel.Icon} {newLevel.VipLevel.Name} Tier {newLevel.Tier} " + - $"and received a bonus of {await payout.FormatKasinoCurrencyAsync()}", true); + $"and received a bonus of {await payout.FormatKasinoCurrencyAsync()}", true, autoDeleteAfter: TimeSpan.FromSeconds(30)); _logger.Info("Sent notification"); } catch (Exception e)