From aedcf0a4b627dcf70282837c2729e8fe4a990195 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Thu, 9 Oct 2025 20:15:11 -0500 Subject: [PATCH] Updated Planes to address index out of range --- 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 c275a17..75d40ed 100644 --- a/KfChatDotNetBot/Commands/KasinoGambaCommands.cs +++ b/KfChatDotNetBot/Commands/KasinoGambaCommands.cs @@ -561,7 +561,7 @@ public class Planes : ICommand } else //this leaves rows 0-5 and columns 0-10, exactly what we need for the board { - switch (planesBoards[useBoard][row, column]) + switch (planesBoards[useBoard][row, column + counter]) { case 0: output += Air;