From d08150850d60900c04ebc5fc82d07d2c5fdd8e36 Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Sun, 3 Jan 2021 19:50:19 +0000 Subject: [PATCH] Revert "Do not start craft until it recipe is locked." This reverts commit 3ad9f87a --- .../machine/tier1/AutoCraftingTableBlockEntity.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/techreborn/blockentity/machine/tier1/AutoCraftingTableBlockEntity.java b/src/main/java/techreborn/blockentity/machine/tier1/AutoCraftingTableBlockEntity.java index a01be51d3..a06397d95 100644 --- a/src/main/java/techreborn/blockentity/machine/tier1/AutoCraftingTableBlockEntity.java +++ b/src/main/java/techreborn/blockentity/machine/tier1/AutoCraftingTableBlockEntity.java @@ -114,11 +114,10 @@ public class AutoCraftingTableBlockEntity extends PowerAcceptorBlockEntity 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) { if (world == null) return false; if (recipe == null) return false; - if (!locked) return false; CraftingInventory crafting = getCraftingInventory(); if (crafting.isEmpty()) return false;