Skip to content

Commit

Permalink
Correccion nombre efecto sonido oleada
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasSchkurko committed Nov 14, 2024
1 parent 0f8fb67 commit 3670ae4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions administradorDeOleadas.wlk
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ object oleadaNormal {
var property tiempoSpawn = 3000
const cantSlimesPosibles = 4

method inicioOleada() = game.sound("m.inicioOleada.mp3")
method finOleada() = game.sound("m.finOleada.mp3")
method inicioOleada() = game.sound("m.iOleada.mp3")
method finOleada() = game.sound("m.fOleada.mp3")

method enemigosVivos() = enemigosGenerados - (cantidadEnemigos - enemigosRestantes)
// Verifica si la oleada está en ejecución
Expand Down Expand Up @@ -153,7 +153,7 @@ object oleadaFinal {

method seMurioEnemigo() {enemigosRestantes-=1}

method inicioOleada() = game.sound("m.inicioOleada.mp3")
method inicioOleada() = game.sound("m.iOleada.mp3")

method enemigosVivos() = enemigosGenerados - (cantidadEnemigos - enemigosRestantes)

Expand Down

0 comments on commit 3670ae4

Please sign in to comment.