Planes 1.21

This commit is contained in:
barelyprofessional
2025-10-12 14:31:19 -05:00
parent c6fff46310
commit 8e78d626de

View File

@@ -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)