Fix Electric Furnace not checking if there is room for the outputs

This commit is contained in:
modmuss50 2019-08-18 15:13:49 +01:00
parent f53d65ca48
commit 64b3441d6d

View file

@ -218,7 +218,7 @@ public class ElectricFurnaceBlockEntity extends PowerAcceptorBlockEntity
if (currentRecipe == null) { if (currentRecipe == null) {
updateCurrentRecipe(); updateCurrentRecipe();
} }
if (currentRecipe != null && !hasAllInputs(currentRecipe)) { if (currentRecipe != null && (!hasAllInputs(currentRecipe) || !canAcceptOutput(currentRecipe, outputSlot))) {
resetCrafter(); resetCrafter();
updateState(); updateState();
} }