Don't deduct wager from the win in planes

This commit is contained in:
barelyprofessional
2025-10-09 17:59:02 -05:00
parent 6177f22ed5
commit 5286e8a2b8

View File

@@ -411,7 +411,7 @@ public class Planes : ICommand
var newBalance = gambler.Balance - wager;
if (((counter % 13) - 3) % carrierCount == 0) //if you landed on the carrier
{
var win = plane.MultiTracker * wager - wager;
var win = plane.MultiTracker * wager;
newBalance = gambler.Balance + win;
planesDisplay = GetGameBoard(counter% 13 - 3, planesBoard, plane, carrierCount, noseUp);
await botInstance.KfClient.EditMessageAsync(msgId.ChatMessageId!.Value, planesDisplay);