Update to every 5 lines = new level

This commit is contained in:
Brian Fertig 2026-02-12 18:13:20 -07:00
parent ed94e946e9
commit ffa6b07637
1 changed files with 1 additions and 1 deletions

View File

@ -601,7 +601,7 @@
linesClearedTotal += rowCount; linesClearedTotal += rowCount;
// Level Up Logic: Every 8 rows // Level Up Logic: Every 8 rows
if (linesClearedTotal % 6 === 0) { if (linesClearedTotal % 5 === 0) {
levelUp(); levelUp();
} }
} }