Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Commit

Permalink
reworked level 3 (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
Quadral1403 committed Jun 15, 2023
1 parent 1fba3a7 commit 0282b0c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ts/game/levels/level3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class Level3 implements Level {
for (let i = 0; i < 4; i++) {
let middleBrick = new MiddleBrickEntity(
550 + i * 50,
130,
200,
1.5,
1.5,
0,
Expand All @@ -111,8 +111,8 @@ class Level3 implements Level {
entities.push(middleBrick);
}

for (let i = 0; i < 5; i++) {
let middleBrick = new MiddleBrickEntity(50 + i * 50, 300, 1.5, 1.5, 0, 0);
for (let i = 0; i < 6; i++) {
let middleBrick = new MiddleBrickEntity(50 + i * 50, 350, 1.5, 1.5, 0, 0);
entities.push(middleBrick);
}

Expand Down

0 comments on commit 0282b0c

Please sign in to comment.