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 (#76)

Co-authored-by: TechLord22 <[email protected]>
  • Loading branch information
Zorbatron and TechLord22 authored Feb 15, 2025
1 parent f836da5 commit dfb5713
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 dfb5713

Please sign in to comment.