diff --git a/Game/js/main.js b/Game/js/main.js index 209dec5..7667019 100644 --- a/Game/js/main.js +++ b/Game/js/main.js @@ -135,7 +135,7 @@ function spawnNote() { // genera una nota y la agrega al arreglo note.y = 0; note.width = 24; note.height = 24; - note.speed = Math.random () *2 + 1; + note.speed = Math.random () *1.5 + 1; notes.push (note); };