Skip to content

Commit

Permalink
Fix GPL ignoring if the recipe is allowed to be cached (GTNewHorizons…
Browse files Browse the repository at this point in the history
  • Loading branch information
miozune authored Sep 2, 2023
1 parent f78e6a9 commit 61af876
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main/java/gregtech/api/logic/ProcessingLogic.java
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,11 @@ public CheckRecipeResult process() {
if (!result.wasSuccessful()) {
return result;
} else {
lastRecipe = recipe;
if (recipe.mCanBeBuffered) {
lastRecipe = recipe;
} else {
lastRecipe = null;
}
}
} else {
if (findRecipeResult.getState() == FindRecipeResult.State.INSUFFICIENT_VOLTAGE) {
Expand Down

0 comments on commit 61af876

Please sign in to comment.