mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 04:22:04 -04:00
Updated Planes to address index out of range
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user