From dd9b85f79b7127c6014a4059b68686b53c5fa745 Mon Sep 17 00:00:00 2001 From: Patrick 'Quezler' Mounier Date: Thu, 19 Nov 2020 18:32:03 +0100 Subject: [PATCH] Give some techtree brackets a new line --- core/src/mindustry/content/TechTree.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/mindustry/content/TechTree.java b/core/src/mindustry/content/TechTree.java index 325a630cf4..17fce59407 100644 --- a/core/src/mindustry/content/TechTree.java +++ b/core/src/mindustry/content/TechTree.java @@ -31,6 +31,7 @@ public class TechTree implements ContentList{ node(router, () -> { node(launchPad, Seq.with(new SectorComplete(extractionOutpost)), () -> { node(interplanetaryAccelerator, Seq.with(new SectorComplete(planetaryTerminal)), () -> { + }); }); @@ -200,6 +201,7 @@ public class TechTree implements ContentList{ }); node(illuminator, () -> { + }); }); @@ -422,6 +424,7 @@ public class TechTree implements ContentList{ node(multiplicativeReconstructor, Seq.with(new SectorComplete(overgrowth)), () -> { node(exponentialReconstructor, () -> { node(tetrativeReconstructor, () -> { + }); }); });