From ecc9dd7a7f763ec0f051a67bafd31bf2dba69f85 Mon Sep 17 00:00:00 2001 From: Epowerj Date: Tue, 12 Jul 2022 19:03:23 -0400 Subject: [PATCH] Made reinforced container cheaper and smaller --- 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 72c3b771c5..98f95bbc6d 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -2848,9 +2848,9 @@ public class Blocks{ }}; reinforcedContainer = new StorageBlock("reinforced-container"){{ - requirements(Category.effect, with(Items.tungsten, 80, Items.graphite, 80)); + requirements(Category.effect, with(Items.tungsten, 30, Items.graphite, 40)); size = 2; - itemCapacity = 250; + itemCapacity = 75; scaledHealth = 120; coreMerge = false; }};