From 8692639e62d0d12634c37c2125f182aec8851a3a Mon Sep 17 00:00:00 2001 From: Anuken Date: Wed, 18 Nov 2020 19:08:26 -0500 Subject: [PATCH] Fixed foreshadow coolant stat roundoff error --- core/src/mindustry/content/Blocks.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index 78c6d0001a..24a23b4c94 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -1777,7 +1777,7 @@ public class Blocks implements ContentList{ shootSound = Sounds.railgun; unitSort = (u, x, y) -> -u.maxHealth; - coolantMultiplier = 0.11f; + coolantMultiplier = 0.2f; health = 150 * size * size; coolantUsage = 1f;