Skip to content

Commit

Permalink
Add second constructor to GCYMMultiblockRecipeLogic to pass perfect O…
Browse files Browse the repository at this point in the history
…Cs to ARL
  • Loading branch information
Zorbatron committed Sep 4, 2024
1 parent 54168e0 commit f25c242
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ public GCYMMultiblockRecipeLogic(RecipeMapMultiblockController tileEntity) {
super(tileEntity);
}

public GCYMMultiblockRecipeLogic(RecipeMapMultiblockController tileEntity, boolean hasPerfectOC) {
super(tileEntity, hasPerfectOC);
}

@Override
public int getParallelLimit() {
if (metaTileEntity instanceof IParallelMultiblock && ((IParallelMultiblock) metaTileEntity).isParallel())
Expand Down

0 comments on commit f25c242

Please sign in to comment.