From 9cb8c6d83db8330e5a93c105447c10548eff6ec3 Mon Sep 17 00:00:00 2001 From: Anuken Date: Sun, 17 Oct 2021 15:30:52 -0400 Subject: [PATCH] Added liquid container 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 cfd69fb61d..e182a0ce4c 100644 --- a/core/src/mindustry/content/TechTree.java +++ b/core/src/mindustry/content/TechTree.java @@ -88,7 +88,9 @@ public class TechTree implements ContentList{ node(conduit, () -> { node(liquidJunction, () -> { node(liquidRouter, () -> { - node(liquidTank); + node(liquidContainer, () -> { + node(liquidTank); + }); node(bridgeConduit);