From ebadb76204375dc173cacfb3470b1658aeec25a2 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Fri, 10 Oct 2025 22:56:24 -0500 Subject: [PATCH] Planes 1.11 hotfix --- 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 38b9ea5..dc37a67 100644 --- a/KfChatDotNetBot/Commands/KasinoGambaCommands.cs +++ b/KfChatDotNetBot/Commands/KasinoGambaCommands.cs @@ -379,7 +379,7 @@ public class Planes : ICommand if (fullCounter == 3) logger.Info($"Generating first plane impact outcome. Framecounter: {frameCounter} | FullCounter: {fullCounter} | Counter: {counter}"); var useBoard = -1; if (fullCounter < 20 || (fullCounter-3) % 20 > 3) useBoard = 0; - else if (fullCounter >= 20 && (fullCounter - 3) % 20 < 3) useBoard = 1; + else if (fullCounter >= 20 && (fullCounter - 3) % 20 <= 3) useBoard = 1; else logger.Info($"Failed to select proper gameboard for gameplay outcome. UseBoard: {useBoard} | FullCounter: {fullCounter} | Counter: {counter} | Height: {plane.Height} | FrameCounter: {frameCounter}"); switch (planesBoards[boardCounter % 2][plane.Height, counter]) {