diff --git a/src/components/Battleground/Timer.vue b/src/components/Battleground/Timer.vue index b5c4334..785892c 100644 --- a/src/components/Battleground/Timer.vue +++ b/src/components/Battleground/Timer.vue @@ -18,9 +18,10 @@ startTimer: function () { this.stopTimer() this.timerIntervalId = setInterval(() => { - this.currentTime-- if (this.currentTime === 0) { this.stopTimer() + } else { + this.currentTime-- } }, 1000) },