Skip to content

Commit

Permalink
fix(enemies spawn timer): shorten the duration
Browse files Browse the repository at this point in the history
  • Loading branch information
smiley405 committed Oct 6, 2023
1 parent 42b1abc commit 2200785
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.js
Expand Up @@ -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,
Expand Down

0 comments on commit 2200785

Please sign in to comment.