mirror of
				https://github.com/mt-mods/pipeworks.git
				synced 2025-10-31 16:05:27 +01:00 
			
		
		
		
	indentation adjusting
This commit is contained in:
		| @@ -65,17 +65,19 @@ end | |||||||
| local function get_craft(pos, inventory, hash) | local function get_craft(pos, inventory, hash) | ||||||
| 	local hash = hash or minetest.hash_node_position(pos) | 	local hash = hash or minetest.hash_node_position(pos) | ||||||
| 	local craft = autocrafterCache[hash] | 	local craft = autocrafterCache[hash] | ||||||
| 		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 | 			recipe = minetest.get_craft_recipe(output.item:get_name()).items or example_recipe | ||||||
| 		end |  | ||||||
| 	if craft then return craft end | 	if craft then return craft end | ||||||
|  |  | ||||||
| 		craft = {recipe = recipe, consumption=count_index(recipe), output = output, decremented_input = decremented_input} | 		craft = {recipe = recipe, consumption=count_index(recipe), output = output, decremented_input = decremented_input} | ||||||
| 		autocrafterCache[hash] = craft | 	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 | ||||||
| 	end | 	end | ||||||
|  | 	autocrafterCache[hash] = craft | ||||||
| 	return craft | 	return craft | ||||||
| end | end | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user