From a84004156f536ef3e8db70b3da17faac645c95ee Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sun, 18 Aug 2024 00:04:08 +0800 Subject: [PATCH] Uncommented Chips message as it probably works now --- KfChatDotNetBot/ChatBot.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/KfChatDotNetBot/ChatBot.cs b/KfChatDotNetBot/ChatBot.cs index f1b341e..d3ed4bc 100644 --- a/KfChatDotNetBot/ChatBot.cs +++ b/KfChatDotNetBot/ChatBot.cs @@ -268,7 +268,6 @@ public class ChatBot var payoutColor = settings[BuiltIn.Keys.KiwiFarmsGreenColor].Value; if (bet.Winnings < bet.Amount) payoutColor = settings[BuiltIn.Keys.KiwiFarmsRedColor].Value; - return; // Remove when I'm certain this is working properly SendChatMessage( $"🚨🚨 CHIPS BROS 🚨🚨 {bet.Username} just bet {bet.Amount:N} {bet.Currency!.ToUpper()} " + $"({bet.Amount * bet.CurrencyPrice:C}) which paid out [color={payoutColor}]{bet.Winnings} {bet.Currency.ToUpper()} " +