From 0474477e441a6245c415db5d4dbeb0068b025a96 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sat, 11 Oct 2025 14:27:31 -0500 Subject: [PATCH] Planes 1.17 --- KfChatDotNetBot/Commands/KasinoGambaCommands.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/KfChatDotNetBot/Commands/KasinoGambaCommands.cs b/KfChatDotNetBot/Commands/KasinoGambaCommands.cs index eb0345e..91f9541 100644 --- a/KfChatDotNetBot/Commands/KasinoGambaCommands.cs +++ b/KfChatDotNetBot/Commands/KasinoGambaCommands.cs @@ -442,7 +442,7 @@ public class Planes : ICommand fullCounter++; } plane.Gravity(); - if ((fullCounter-3) % 20 == 0 && !firstBoard)//removes old planesboard, adds new planeboard when necessary **********************************************************************NEEDS MORE UPDATES + if (counter == 0 && !firstBoard)//removes old planesboard, adds new planeboard when necessary **********************************************************************NEEDS MORE UPDATES { planesBoards.RemoveAt(0); planesBoards.Add(CreatePlanesBoard(gambler)); @@ -514,7 +514,7 @@ public class Planes : ICommand } else if (row == 7) //water/carrier row { - if (((fullCounter-3) + column) % carrierCount == 0) output += Carrier; + if ((counter + column) % carrierCount == 0) output += Carrier; else output += Water; } else //this leaves rows 0-5 and columns 0-24, exactly what we need for the board @@ -572,7 +572,7 @@ public class Planes : ICommand } else if (row == 7) //water/carrier row { - if (((fullCounter-3) + column) % carrierCount == 0) output += Carrier; + if ((counter + column) % carrierCount == 0) output += Carrier; else output += Water; } else if (row == plane.Height && column == 0)