From ffa6b076377702009884bb760c6065ea267b8471 Mon Sep 17 00:00:00 2001 From: Brian Fertig Date: Thu, 12 Feb 2026 18:13:20 -0700 Subject: [PATCH] Update to every 5 lines = new level --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 653cabb..e61e4cd 100644 --- a/index.html +++ b/index.html @@ -601,7 +601,7 @@ linesClearedTotal += rowCount; // Level Up Logic: Every 8 rows - if (linesClearedTotal % 6 === 0) { + if (linesClearedTotal % 5 === 0) { levelUp(); } }