From 5286e8a2b80e7313b6ddb3c7d9440ed1d162bc7b Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Thu, 9 Oct 2025 17:59:02 -0500 Subject: [PATCH] Don't deduct wager from the win in planes --- KfChatDotNetBot/Commands/KasinoGambaCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Commands/KasinoGambaCommands.cs b/KfChatDotNetBot/Commands/KasinoGambaCommands.cs index 9f8de37..0e9a4d3 100644 --- a/KfChatDotNetBot/Commands/KasinoGambaCommands.cs +++ b/KfChatDotNetBot/Commands/KasinoGambaCommands.cs @@ -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);