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

Commit

Permalink
Fix tier in chemplant error display (#856)
Browse files Browse the repository at this point in the history
fix tier
  • Loading branch information
chochem committed Mar 23, 2024
1 parent 3adf92c commit a6b88f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ protected ProcessingLogic createProcessingLogic() {
@Override
protected CheckRecipeResult validateRecipe(@NotNull GT_Recipe recipe) {
if (recipe.mSpecialValue > mSolidCasingTier) {
return CheckRecipeResultRegistry.insufficientMachineTier(recipe.mSpecialValue);
return CheckRecipeResultRegistry.insufficientMachineTier(recipe.mSpecialValue + 1);
}
// checks if it has a catalyst
ItemStack catalystInRecipe = null;
Expand Down

0 comments on commit a6b88f7

Please sign in to comment.