Revert "Do not start craft until it recipe is locked."
This reverts commit 3ad9f87a
This commit is contained in:
parent
607e6356a1
commit
d08150850d
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue