Kaynağa Gözat

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

master
Adrien 3 yıl önce
ebeveyn
işleme
a7f468888b
1 değiştirilmiş dosya ile 2 ekleme ve 1 silme
  1. +2
    -1
      src/components/Battleground/Timer.vue

+ 2
- 1
src/components/Battleground/Timer.vue Dosyayı Görüntüle

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


Yükleniyor…
İptal
Kaydet