Skip to content
This repository has been archived by the owner on May 25, 2024. It is now read-only.

Commit

Permalink
fix (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
HoleFish authored May 20, 2024
1 parent c361b6d commit abe9ff9
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ protected ProcessingLogic createProcessingLogic() {
@Override
protected CheckRecipeResult validateRecipe(@NotNull GT_Recipe recipe) {
return recipe.mSpecialValue <= mTierCasing ? CheckRecipeResultRegistry.SUCCESSFUL
: CheckRecipeResultRegistry.NO_RECIPE;
: CheckRecipeResultRegistry.insufficientMachineTier(recipe.mSpecialValue);
}

@Override
Expand Down Expand Up @@ -276,4 +276,8 @@ public boolean supportsInputSeparation() {
return true;
}

@Override
public boolean supportsBatchMode() {
return true;
}
}

0 comments on commit abe9ff9

Please sign in to comment.