This commit is contained in:
Anuken
2022-05-09 23:50:01 -04:00
parent 95254eef44
commit 6efca04ea8
9 changed files with 9 additions and 12 deletions
@@ -170,7 +170,7 @@ public class PayloadRouter extends PayloadConveyor{
public void buildConfiguration(Table table){
ItemSelection.buildTable(PayloadRouter.this, table,
content.blocks().select(PayloadRouter.this::canSort).<UnlockableContent>as()
.and(content.units().select(PayloadRouter.this::canSort).as()),
.add(content.units().select(PayloadRouter.this::canSort).as()),
() -> (UnlockableContent)config(), this::configure);
}
@@ -89,7 +89,7 @@ public class PayloadSource extends PayloadBlock{
public void buildConfiguration(Table table){
ItemSelection.buildTable(PayloadSource.this, table,
content.blocks().select(PayloadSource.this::canProduce).<UnlockableContent>as()
.and(content.units().select(PayloadSource.this::canProduce).as()),
.add(content.units().select(PayloadSource.this::canProduce).as()),
() -> (UnlockableContent)config(), this::configure);
}