From 0301a6c2d343fabffef11f2bcd51d1c0dcb63eb0 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Thu, 25 Dec 2025 12:37:48 -0600 Subject: [PATCH] Missing bbcode close for win --- KfChatDotNetBot/Commands/Kasino/SlotsCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Commands/Kasino/SlotsCommand.cs b/KfChatDotNetBot/Commands/Kasino/SlotsCommand.cs index aa1df3c..d28eb3a 100644 --- a/KfChatDotNetBot/Commands/Kasino/SlotsCommand.cs +++ b/KfChatDotNetBot/Commands/Kasino/SlotsCommand.cs @@ -99,7 +99,7 @@ public class SlotsCommand : ICommand //if you win var featureAddOn = board.GotFeature ? "Congrats on the feature." : ""; newBalance = await Money.NewWagerAsync(gambler.Id, wager, Convert.ToDecimal(winnings), WagerGame.Keno, ct: ctx); - await botInstance.SendChatMessageAsync($"{user.FormatUsername()}, you [color={colors[BuiltIn.Keys.KiwiFarmsGreenColor].Value}win[/color]! Current balance: {await newBalance.FormatKasinoCurrencyAsync()}" + + await botInstance.SendChatMessageAsync($"{user.FormatUsername()}, you [color={colors[BuiltIn.Keys.KiwiFarmsGreenColor].Value}]win[/color]! Current balance: {await newBalance.FormatKasinoCurrencyAsync()}" + $"{featureAddOn}", true, autoDeleteAfter:TimeSpan.FromSeconds(30)); }