From 200e85d9707444dd571f1050f82d8f71b56ad107 Mon Sep 17 00:00:00 2001 From: Anuken Date: Mon, 20 Jan 2020 18:55:26 -0500 Subject: [PATCH] Added underflow gate to tech tree --- core/src/mindustry/content/TechTree.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/src/mindustry/content/TechTree.java b/core/src/mindustry/content/TechTree.java index fb9207cdda..efc6ef77f6 100644 --- a/core/src/mindustry/content/TechTree.java +++ b/core/src/mindustry/content/TechTree.java @@ -34,7 +34,9 @@ public class TechTree implements ContentList{ node(sorter, () -> { node(invertedSorter); node(message); - node(overflowGate); + node(overflowGate, () -> { + node(underflowGate); + }); }); node(container, () -> { node(unloader);