Revert "Do not start craft until it recipe is locked."

This reverts commit 3ad9f87a
This commit is contained in:
modmuss50 2021-01-03 19:50:19 +00:00
parent 607e6356a1
commit d08150850d

View file

@ -114,11 +114,10 @@ public class AutoCraftingTableBlockEntity extends PowerAcceptorBlockEntity
return inventoryCrafting; return inventoryCrafting;
} }
// Check if we have locked recipe, inputs and space for outputs // Check if we have recipe, inputs and space for outputs
private boolean canMake(CraftingRecipe recipe) { private boolean canMake(CraftingRecipe recipe) {
if (world == null) return false; if (world == null) return false;
if (recipe == null) return false; if (recipe == null) return false;
if (!locked) return false;
CraftingInventory crafting = getCraftingInventory(); CraftingInventory crafting = getCraftingInventory();
if (crafting.isEmpty()) return false; if (crafting.isEmpty()) return false;