This commit is contained in:
Anuken
2020-11-14 17:00:12 -05:00
parent 0c050a3ef4
commit 4975def352
7 changed files with 34 additions and 23 deletions

View File

@@ -530,21 +530,23 @@ public class TechTree implements ContentList{
});
nodeProduce(Items.copper, () -> {
nodeProduce(Liquids.water, () -> {
});
nodeProduce(Items.lead, () -> {
nodeProduce(Items.graphite, () -> {
nodeProduce(Items.titanium, () -> {
nodeProduce(Liquids.cryofluid, () -> {
nodeProduce(Items.titanium, () -> {
nodeProduce(Liquids.cryofluid, () -> {
});
nodeProduce(Items.thorium, () -> {
nodeProduce(Items.surgeAlloy, () -> {
});
nodeProduce(Items.thorium, () -> {
nodeProduce(Items.surgeAlloy, () -> {
nodeProduce(Items.phaseFabric, () -> {
});
nodeProduce(Items.phaseFabric, () -> {
});
});
});
});
@@ -562,9 +564,12 @@ public class TechTree implements ContentList{
});
nodeProduce(Items.coal, () -> {
nodeProduce(Items.silicon, () -> {
nodeProduce(Items.graphite, () -> {
nodeProduce(Items.silicon, () -> {
});
});
nodeProduce(Items.pyratite, () -> {
nodeProduce(Items.blastCompound, () -> {
@@ -580,10 +585,6 @@ public class TechTree implements ContentList{
});
});
});
nodeProduce(Liquids.water, () -> {
});
});
});
}