Skip to content

Commit

Permalink
smort
Browse files Browse the repository at this point in the history
  • Loading branch information
MEEPofFaith committed Oct 29, 2024
1 parent 7b036e5 commit 8dd734a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/tranqol/content/TQBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ public class TQBlocks{

// region distribution - Serpulo

hydroconveyor, multiSorter,
hydroconveyor, smartSorter,

// endregion
// region distribution - Erekir

ductJunction, ductMultiSorter,
ductJunction, ductSmartSorter,

// endregion
// region liquid - Serpulo
Expand Down Expand Up @@ -77,7 +77,7 @@ public static void load(){
buildCostMultiplier = 0.25f;
}};

multiSorter = new MultiSorter("multi-sorter"){{
smartSorter = new MultiSorter("multi-sorter"){{
requirements(Category.distribution, with(Items.lead, 5, Items.copper, 5, Items.silicon, 5));
}};

Expand All @@ -90,7 +90,7 @@ public static void load(){
speed = 4f;
}};

ductMultiSorter = new MultiSorter("duct-multi-sorter"){{
ductSmartSorter = new MultiSorter("duct-multi-sorter"){{
requirements(Category.distribution, with(Items.beryllium, 5, Items.silicon, 5));
health = 90;
}};
Expand Down
4 changes: 2 additions & 2 deletions src/tranqol/content/TQTechTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static void load(){
});

vanillaNode(invertedSorter, () -> {
node(multiSorter);
node(smartSorter);
});

vanillaNode(liquidRouter, () -> {
Expand Down Expand Up @@ -62,7 +62,7 @@ public static void load(){
});

vanillaNode("erekir", ductRouter, () -> {
node(ductMultiSorter);
node(ductSmartSorter);
});

vanillaNode("erekir", reinforcedLiquidRouter, () -> {
Expand Down

0 comments on commit 8dd734a

Please sign in to comment.