From adbfcdf16ad672fd7e12344d9f0887ee1789c78a Mon Sep 17 00:00:00 2001 From: Anuken Date: Sat, 24 Jul 2021 09:14:38 -0400 Subject: [PATCH] Reverted vault/container health buff due to "damaged" appearance in saves --- core/src/mindustry/content/Blocks.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index 8b84a190c7..a43108db74 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -1388,14 +1388,14 @@ public class Blocks implements ContentList{ requirements(Category.effect, with(Items.titanium, 250, Items.thorium, 125)); size = 3; itemCapacity = 1000; - health = size * size * 60; + health = size * size * 55; }}; container = new StorageBlock("container"){{ requirements(Category.effect, with(Items.titanium, 100)); size = 2; itemCapacity = 300; - health = size * size * 60; + health = size * size * 55; }}; unloader = new Unloader("unloader"){{