Forgot to convert Clash.gg bets from cents to dollars

This commit is contained in:
barelyprofessional
2025-03-23 16:34:43 +08:00
parent b77c6b1f12
commit 3ca8c047e4

View File

@@ -470,8 +470,8 @@ public class BotServices
var payoutColor = settings[BuiltIn.Keys.KiwiFarmsGreenColor].Value;
if (bet.Payout < bet.Bet) payoutColor = settings[BuiltIn.Keys.KiwiFarmsRedColor].Value;
_chatBot.SendChatMessage($"🚨🚨 CLASH.GG BETTING 🚨🚨 austingambles just bet {bet.Bet} {bet.Currency.Humanize()} Money which paid out " +
$"[color={payoutColor}]{bet.Payout} {bet.Currency.Humanize()} Money[/color] ({bet.Multiplier}x) on {bet.Game.Humanize()} 💰💰", true);
_chatBot.SendChatMessage($"🚨🚨 CLASH.GG BETTING 🚨🚨 austingambles just bet {bet.Bet / 100} {bet.Currency.Humanize()} Money which paid out " +
$"[color={payoutColor}]{bet.Payout / 100} {bet.Currency.Humanize()} Money[/color] ({bet.Multiplier}x) on {bet.Game.Humanize()} 💰💰", true);
}
private void OnHowlggBetHistory(object sender, HowlggBetHistoryResponseModel data)