Fix statistics

This commit is contained in:
Jay 2022-03-02 17:02:26 +01:00
parent ba93aab8b1
commit ff5b7d022c

View file

@ -37,7 +37,7 @@ function showStatistic(elementStatistic, amount, timeout) {
? parseInt(elementStatistic.text())
: -1;
if (value <= amount) {
if (value < amount) {
elementStatistic.text(value + 1);
var remainingSlowDown = 6;