From 220078539b716288b669d7168604d1d7de5bd466 Mon Sep 17 00:00:00 2001 From: smiley405 Date: Fri, 6 Oct 2023 21:43:48 +0100 Subject: [PATCH] fix(enemies spawn timer): shorten the duration --- src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index 72de60c..1fa56ee 100644 --- a/src/main.js +++ b/src/main.js @@ -311,7 +311,7 @@ Boot(() => { const y2 = walls[0].halfHeight(); for (let i = 0; i < enemiesInEachWaves[Game.root.wave]; i++) { - const randTime = randomInt(1000, 4000); + const randTime = randomInt(1000, 3000); const t = Game.timer.wait({ time: randTime * i,