From fa3969b65100283bf99d350d387460adf2253fb7 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sat, 25 Mar 2017 21:39:13 +0100 Subject: finer minions dead / min update resolution --- templates/index.html | 4 ++-- 1 file 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); -- cgit v1.3.1