From 5f662c8389fa122e19c05ef5ccca1c911c450dc3 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Mon, 18 Jun 2018 18:38:05 -0400 Subject: [PATCH] Fiddling with breath strength some more --- game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.js b/game.js index bdd4529..67b8a30 100644 --- a/game.js +++ b/game.js @@ -3689,7 +3689,7 @@ function breath(type, style) { let prey = new Container(); if (style == "line") { - area *= 50; + area *= (Math.log10(macro.scale) + 1) * 10; prey = getOnePrey(biome, area, true); } else if (style == "cone") { prey = getPrey(biome, area, true);