From e79763d139e8f4ce50056d30b447a4c259705b40 Mon Sep 17 00:00:00 2001 From: Epowerj Date: Tue, 12 Jul 2022 20:36:57 -0400 Subject: [PATCH] Changed payload build requirements --- 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 98f95bbc6d..7900e49f7f 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -5382,7 +5382,7 @@ public class Blocks{ }}; payloadMassDriver = new PayloadMassDriver("payload-mass-driver"){{ - requirements(Category.units, with(Items.tungsten, 120, Items.silicon, 120, Items.oxide, 25)); + requirements(Category.units, with(Items.tungsten, 120, Items.silicon, 120, Items.graphite, 50)); regionSuffix = "-dark"; size = 3; reload = 130f; @@ -5456,7 +5456,7 @@ public class Blocks{ }}; payloadUnloader = new PayloadUnloader("payload-unloader"){{ - requirements(Category.units, with(Items.graphite, 50, Items.silicon, 50, Items.oxide, 30)); + requirements(Category.units, with(Items.graphite, 50, Items.silicon, 50, Items.tungsten, 30)); regionSuffix = "-dark"; hasPower = true; consumePower(2f);