Planes 1.12 more hotfixes

This commit is contained in:
barelyprofessional
2025-10-11 00:30:05 -05:00
parent f8acba110d
commit 2bd7b0d94a

View File

@@ -619,7 +619,7 @@ public class Planes : ICommand
* so in this case where the value is -3, we need planesBoards[0][row, 20 - counter]
*/
int counter2;
if ((column + counter) % 20 < 0) counter2 = 20 - (column + counter);
if ((column + counter) % 20 < 0) counter2 = 20 + (column + counter);
else counter2 = (column + counter) % 20;
if (firstBoard && (counter + column < 0))
{