From 15b5ef250b4bf5155d13cbef65aa45876ed6cc2a Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Thu, 9 Oct 2025 20:58:34 -0500 Subject: [PATCH] Making planes go faster --- KfChatDotNetBot/Commands/KasinoGambaCommands.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/KfChatDotNetBot/Commands/KasinoGambaCommands.cs b/KfChatDotNetBot/Commands/KasinoGambaCommands.cs index b3a285c..43882e4 100644 --- a/KfChatDotNetBot/Commands/KasinoGambaCommands.cs +++ b/KfChatDotNetBot/Commands/KasinoGambaCommands.cs @@ -317,7 +317,7 @@ public class Planes : ICommand var planesBoard = CreatePlanesBoard(gambler); var planesBoard2 = CreatePlanesBoard(gambler); var plane = new Plane(gambler); - var frameLength = 3888.0; + var frameLength = 1056.0; var fullCounter = 0; var counter = 0; var noseUp = true; @@ -519,7 +519,7 @@ public class Planes : ICommand var counter = fullCounter % 13 - 3; var output = ""; List planesBoards = new List() { planesBoard, planesBoard2 }; - if (counter < 3) + if (counter < 0) { output = GetPreGameBoard(counter, planesBoard, plane, carrierCount, noseUp); return output;