Browse Source

Fixed level 6 missing

Arnaud Vergnet 4 years ago
parent
commit
dbe03a2a2d
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      screens/Tetris/GameLogic.js

+ 5
- 5
screens/Tetris/GameLogic.js View File

@@ -23,11 +23,11 @@ export default class GameLogic {
23 23
         '3': 500,
24 24
         '4': 700,
25 25
         '5': 1000,
26
-        '7': 1500,
27
-        '8': 2000,
28
-        '9': 3000,
29
-        '10': 4000,
30
-        '11': 5000,
26
+        '6': 1500,
27
+        '7': 2000,
28
+        '8': 3000,
29
+        '9': 4000,
30
+        '10': 5000,
31 31
     };
32 32
 
33 33
     currentGrid: Array<Array<Object>>;

Loading…
Cancel
Save