Planes 1.07 counter updates

This commit is contained in:
barelyprofessional
2025-10-10 01:38:52 -05:00
parent 536d78415c
commit 662a8387f1

View File

@@ -343,7 +343,7 @@ public class Planes : ICommand
{
if (fullCounter > 20) firstBoard = false;
counter = fullCounter % 23-3;
if (!firstBoard) counter += 3;
if (!firstBoard) counter = (fullCounter - 3) % 20;
if (counter % 20 == 19) boardCounter++;
await Task.Delay(TimeSpan.FromMilliseconds(frameLength / 3), ctx);
var neutral = false;