Skip to content

Commit

Permalink
fix multismelter getting stuck when its output gets full
Browse files Browse the repository at this point in the history
  • Loading branch information
PrototypeTrousers committed Apr 9, 2021
1 parent f95e4cc commit 958c148
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ protected void trySearchNewRecipe() {
} else if (previousRecipe != null && previousRecipe.matches(false, importInventory, importFluids)) {
//if previous recipe still matches inputs, try to use it
currentRecipe = previousRecipe;
} else {
metaTileEntity.setInputsDirty(false);
currentRecipe = findRecipe(maxVoltage, importInventory, importFluids);
}
if (currentRecipe != null)
// replace old recipe with new one
Expand Down

0 comments on commit 958c148

Please sign in to comment.