From be71664436f2643183bcf620d79411d87815a57a Mon Sep 17 00:00:00 2001 From: buthed010203 Date: Thu, 20 May 2021 12:33:40 -0400 Subject: [PATCH] Lower surge tower schem priority (#5277) The priority of surge towers is now -15 (default for power nodes is -10). Schems with surge towers will often see them automatically connected to random buildings only a couple tiles away which are already in range of other nodes, the hope here is that this fixes that. --- core/src/mindustry/content/Blocks.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index 042a043228..4f8bb350af 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -1124,6 +1124,7 @@ public class Blocks implements ContentList{ size = 2; maxNodes = 2; laserRange = 40f; + schematicPriority = -15; }}; diode = new PowerDiode("diode"){{