Parcourir la source

🐛: fix timer drop to negative if reset time is 0

master
Adrien il y a 5 ans
Parent
révision
a7f468888b
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. +2
    -1
      src/components/Battleground/Timer.vue

+ 2
- 1
src/components/Battleground/Timer.vue Voir le fichier

@@ -18,9 +18,10 @@
startTimer: function () { startTimer: function () {
this.stopTimer() this.stopTimer()
this.timerIntervalId = setInterval(() => { this.timerIntervalId = setInterval(() => {
this.currentTime--
if (this.currentTime === 0) { if (this.currentTime === 0) {
this.stopTimer() this.stopTimer()
} else {
this.currentTime--
} }
}, 1000) }, 1000)
}, },


Chargement…
Annuler
Enregistrer