From 8e78d626de48c1d9757e8df4eccb78ce4444a7b2 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sun, 12 Oct 2025 14:31:19 -0500 Subject: [PATCH] Planes 1.21 --- 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 03254f4..e20447a 100644 --- a/KfChatDotNetBot/Commands/KasinoGambaCommands.cs +++ b/KfChatDotNetBot/Commands/KasinoGambaCommands.cs @@ -537,7 +537,7 @@ public class Planes : ICommand } else if (row == 7) //water/carrier row { - if ((counter + column) % carrierCount == 0) output += Carrier; + if (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 @@ -595,7 +595,7 @@ public class Planes : ICommand } else if (row == 7) //water/carrier row { - if (((fullCounter = 3)+ column) % carrierCount == 0) output += Carrier; + if ((fullCounter+ column) % carrierCount == 0) output += Carrier; else output += Water; } else if (row == plane.Height && column == 0)