Naval research requirements for final sector

This commit is contained in:
Anuken
2020-11-19 10:23:46 -05:00
parent 506175212c
commit 89ef2ac4d3
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -476,6 +476,9 @@ public class TechTree implements ContentList{
new SectorComplete(overgrowth), new SectorComplete(overgrowth),
new SectorComplete(extractionOutpost), new SectorComplete(extractionOutpost),
new SectorComplete(saltFlats), new SectorComplete(saltFlats),
new Research(risso),
new Research(minke),
new Research(bryde),
new Research(spectre), new Research(spectre),
new Research(launchPad), new Research(launchPad),
new Research(impactReactor), new Research(impactReactor),
+1 -1
View File
@@ -14,7 +14,7 @@ import mindustry.world.*;
/** "Compiles" a sequence of statements into instructions. */ /** "Compiles" a sequence of statements into instructions. */
public class LAssembler{ public class LAssembler{
public static ObjectMap<String, Func<String[], LStatement>> customParsers = new ObjectMap<>(); public static ObjectMap<String, Func<String[], LStatement>> customParsers = new ObjectMap<>();
public static final int maxTokenLength = 30; public static final int maxTokenLength = 40;
private int lastVar; private int lastVar;
/** Maps names to variable IDs. */ /** Maps names to variable IDs. */