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;