diff options
Diffstat (limited to 'templates/index.html')
| -rw-r--r-- | templates/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/index.html b/templates/index.html index e4b141b..1aa1ba1 100644 --- a/templates/index.html +++ b/templates/index.html @@ -279,9 +279,9 @@ var minions = 0; // sum(minions killed) / (seconds per day) setInterval(() => { - minions += minions_per_second; + minions += minions_per_second / 10; $("#minions-killed-now").text(Math.floor(minions)); - }, 1000); + }, 100); </script> <!-- Just for demo --> |
