From 54f9932dd9ab59ea09032781100140d8f8b57456 Mon Sep 17 00:00:00 2001 From: Mees Roelofsz Date: Fri, 8 Dec 2023 10:40:23 +0100 Subject: [PATCH] changed times --- web/game.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/game.js b/web/game.js index 8d5cfb5..767b4c7 100644 --- a/web/game.js +++ b/web/game.js @@ -203,7 +203,7 @@ function phase() { text("phase 1", 10, 50); pop(); break; - case (time < 20): + case (time < 40): paternArray = [2, 5] push(); fill(255, 0, 255); @@ -212,7 +212,7 @@ function phase() { text("phase 2", 10, 50); pop(); break; - case (time < 30): + case (time < 60): paternArray = [3, 4] push(); fill(255, 0, 255); @@ -221,7 +221,7 @@ function phase() { text("phase 3", 10, 50); pop(); break; - case (time > 30): + case (time > 6): paternArray = [1, 2, 3, 4, 5] push(); fill(255, 0, 255);