Removed issue workaround from README

This commit is contained in:
Anuken
2020-10-18 09:29:49 -04:00
parent c1c41a19c8
commit 14c42c5652
3 changed files with 7 additions and 8 deletions

View File

@@ -99,7 +99,7 @@ public class BlockForge extends PayloadAcceptor{
public void buildConfiguration(Table table){
Seq<Block> blocks = Vars.content.blocks().select(b -> b.isVisible() && b.size <= 2);
ItemSelection.buildTable(table, blocks, () -> recipe, block -> recipe = block);
ItemSelection.buildTable(table, blocks, () -> recipe, this::configure);
}
@Override