Skip to content

Commit

Permalink
Más arreglos del tiempo medio
Browse files Browse the repository at this point in the history
  • Loading branch information
iyanfdezz committed Apr 2, 2024
1 parent 02f0b64 commit 365e918
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions webapp/src/pages/Bateria/Bateria.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,12 @@ const JuegoPreguntas = () => {
setJuegoTerminado(true);
if(preguntasCorrectas+preguntasFalladas>0){
const preguntasTotales=preguntasCorrectas+preguntasFalladas;
const tMedio=180/preguntasTotales;
const tMedio=TIME/preguntasTotales;
setTiempoMedio(tMedio);
}
guardarPartida();
if (juegoTerminado && tiempoMedio!=0) {
guardarPartida();
}
}
const timer = setInterval(() => {
setTiempoRestante((prevTiempo) => (prevTiempo <= 0 ? 0 : prevTiempo - 1));
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/pages/Clasico/Clasico.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const JuegoPreguntas = () => {
};

useEffect(() => {
if (juegoTerminado) {
if (juegoTerminado && tiempoMedio!=0) {
guardarPartida();
}
}, [juegoTerminado]);
Expand Down

0 comments on commit 365e918

Please sign in to comment.