From da96b234413b2a5ad54f9408dcdcb15cac5d6fa7 Mon Sep 17 00:00:00 2001 From: Anuken Date: Fri, 25 Dec 2020 01:26:20 -0500 Subject: [PATCH] Higher power source output --- core/src/mindustry/content/Blocks.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index 7bc2e18679..7950832be8 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -1992,7 +1992,7 @@ public class Blocks implements ContentList{ powerSource = new PowerSource("power-source"){{ requirements(Category.power, BuildVisibility.sandboxOnly, with()); - powerProduction = 10000f / 60f; + powerProduction = 100000f / 60f; alwaysUnlocked = true; }};