From 9dbdb05eded912d8a3b4b870ae93a74b44c3cbc3 Mon Sep 17 00:00:00 2001 From: Epowerj Date: Tue, 30 Aug 2022 14:43:47 -0400 Subject: [PATCH] Rearranged tech tree for turrets --- core/src/mindustry/content/ErekirTechTree.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/mindustry/content/ErekirTechTree.java b/core/src/mindustry/content/ErekirTechTree.java index 14eb86f18b..0c17870425 100644 --- a/core/src/mindustry/content/ErekirTechTree.java +++ b/core/src/mindustry/content/ErekirTechTree.java @@ -261,15 +261,15 @@ public class ErekirTechTree{ node(diffuse, Seq.with(new OnSector(lake)), () -> { node(sublimate, Seq.with(new OnSector(marsh)), () -> { - node(titan, Seq.with(new OnSector(marsh)), () -> { - node(afflict, Seq.with(new OnSector(ravine)), () -> { + node(afflict, Seq.with(new OnSector(ravine)), () -> { + node(titan, Seq.with(new OnSector(marsh)), () -> { }); }); + }); - node(disperse, Seq.with(new OnSector(marsh)), () -> { + node(disperse, Seq.with(new OnSector(marsh)), () -> { - }); }); });