From faadbf30c09d7475eedea7ce16986b7e6c253fc0 Mon Sep 17 00:00:00 2001 From: Martin Fernandez Prieto Date: Mon, 25 Nov 2019 23:02:03 +0100 Subject: [PATCH] 0.7.8: arreglado bug que te pone que no te bajaba al priemr nivel cuando te mataban --- src/Globales.js | 2 +- src/layers/GameLayer.js | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Globales.js b/src/Globales.js index 486dece..8fcfa88 100644 --- a/src/Globales.js +++ b/src/Globales.js @@ -1,4 +1,4 @@ -var version ="v0.7.7"; +var version ="v0.7.8"; var pulsaciones = []; // actuales registradas diff --git a/src/layers/GameLayer.js b/src/layers/GameLayer.js index ec60227..2f97597 100644 --- a/src/layers/GameLayer.js +++ b/src/layers/GameLayer.js @@ -582,13 +582,14 @@ class GameLayer extends Layer { perder() { this.controladorJuego.reiniciarControlador(); + this.iniciar(); this.mensaje = new Boton(imagenes.mensaje_perder, 480/2, 320/2); this.pausa = true; } reiniciarNivel() { - this.iniciar(); this.controladorJuego.reiniciarNivel(); + this.iniciar(); this.mensaje = new Boton(imagenes.mensaje_perderVida, 480/2, 320/2); this.pausa = true; }