Fixed loss so it's now red for lambchop

This commit is contained in:
barelyprofessional
2025-12-09 23:40:47 -06:00
parent 4671bb3d25
commit 052918fd28

View File

@@ -254,7 +254,7 @@ public class LambchopCommand : ICommand
else else
{ {
newBalance = await Money.NewWagerAsync(gambler.Id, wager, -wager, WagerGame.LambChop, ct: ctx); newBalance = await Money.NewWagerAsync(gambler.Id, wager, -wager, WagerGame.LambChop, ct: ctx);
lambchopResultMessage = $"{user.FormatUsername()}, you [B][COLOR={colors[BuiltIn.Keys.KiwiFarmsGreenColor].Value}]LOST[/COLOR][/B]" + lambchopResultMessage = $"{user.FormatUsername()}, you [B][COLOR={colors[BuiltIn.Keys.KiwiFarmsRedColor].Value}]LOST[/COLOR][/B]" +
$", better luck next time | Balance {await newBalance.FormatKasinoCurrencyAsync()}"; $", better luck next time | Balance {await newBalance.FormatKasinoCurrencyAsync()}";
} }