From 001cd5824b06b31903100ac2555baccf6da3b73b Mon Sep 17 00:00:00 2001 From: Luke aka SwissalpS Date: Thu, 15 Jun 2023 03:28:44 +0200 Subject: [PATCH] return right away if there is a chached craft gives us more horizontal space to work with --- autocrafter.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autocrafter.lua b/autocrafter.lua index c60febd..5fb3b9e 100644 --- a/autocrafter.lua +++ b/autocrafter.lua @@ -65,13 +65,13 @@ end local function get_craft(pos, inventory, hash) local hash = hash or minetest.hash_node_position(pos) local craft = autocrafterCache[hash] - if not craft then local example_recipe = inventory:get_list("recipe") local output, decremented_input = minetest.get_craft_result({method = "normal", width = 3, items = example_recipe}) local recipe = example_recipe if output and not output.item:is_empty() then recipe = minetest.get_craft_recipe(output.item:get_name()).items or example_recipe end + if craft then return craft end craft = {recipe = recipe, consumption=count_index(recipe), output = output, decremented_input = decremented_input} autocrafterCache[hash] = craft