diff --git a/game.js b/game.js index ef609df..be8a64e 100644 --- a/game.js +++ b/game.js @@ -2372,8 +2372,8 @@ function update(lines = []) function pick_move() { + setTimeout(pick_move, 1500 * (1 + Math.log10(macro.scale))); if (!strolling) { - setTimeout(pick_move, 1500 * Math.log10(macro.scale)); return; } let choice = Math.random(); @@ -2385,7 +2385,6 @@ function pick_move() } else { feed(); } - setTimeout(pick_move, 1500 * Math.sqrt(macro.scale)); } function grow_pick(times) { diff --git a/stroll.html b/stroll.html index dfed618..777ac0d 100644 --- a/stroll.html +++ b/stroll.html @@ -161,11 +161,18 @@

Or, load/save your own character internally here! It'll be saved in your browser, so you can come back to it later.

-
+

Reset the sheet here (custom character data isn't affected)

+ +
+ +
+ +
+
diff --git a/style.css b/style.css index 8322ef9..6f84b3b 100644 --- a/style.css +++ b/style.css @@ -148,6 +148,12 @@ body.dark #log { height: 75px; } +#button-start { + width:200px; + height:100px; + font-size: 32px; +} + .stat-button { font-size: 20px; width: 120px; @@ -265,6 +271,7 @@ body.light input[type="checkbox"]:checked+ body.dark input[type="checkbox"]:checked+ .custom-header { color: #fff; + border-style: solid; margin: 10px; background: #444; }