Fix statistics
This commit is contained in:
parent
ba93aab8b1
commit
ff5b7d022c
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue