From e7c3c1f8986127508f15268031b352172bd6ebd7 Mon Sep 17 00:00:00 2001 From: Anuken Date: Sat, 8 Feb 2025 21:21:59 -0500 Subject: [PATCH] Cleanup --- core/src/mindustry/content/Blocks.java | 4 ++-- core/src/mindustry/world/blocks/campaign/LandingPad.java | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index e62a70f62a..5da15a6761 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -2454,13 +2454,13 @@ public class Blocks{ //erekir beamNode = new BeamNode("beam-node"){{ - requirements(Category.power, with(Items.beryllium, 10)); + requirements(Category.power, with(Items.beryllium, 8)); consumesPower = outputsPower = true; health = 90; range = 10; fogRadius = 1; researchCost = with(Items.beryllium, 5); - buildCostMultiplier = 2f; + buildCostMultiplier = 2.5f; consumePowerBuffered(1000f); }}; diff --git a/core/src/mindustry/world/blocks/campaign/LandingPad.java b/core/src/mindustry/world/blocks/campaign/LandingPad.java index 2fc630fc4a..fdef011eeb 100644 --- a/core/src/mindustry/world/blocks/campaign/LandingPad.java +++ b/core/src/mindustry/world/blocks/campaign/LandingPad.java @@ -130,6 +130,12 @@ public class LandingPad extends Block{ public @Nullable Item arriving; public float liquidRemoved; + @Override + public void drawSelect(){ + super.drawSelect(); + drawItemSelection(config); + } + public void handleLanding(){ if(config == null) return;