From 951df68d579a90010d9c24119e2b7a0f3a4874b6 Mon Sep 17 00:00:00 2001 From: kabou Date: Fri, 6 May 2022 10:37:02 +0200 Subject: [PATCH] Update bone block to bone meal crafting recipe. * Update bone block to bone meal crafting recipe that was forgotten when updating the bone meal to bone block crafting recipe as part of the mcl_dye changes.. --- mods/ITEMS/mcl_core/crafting.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_core/crafting.lua b/mods/ITEMS/mcl_core/crafting.lua index 21ae39f52..38c6d3435 100644 --- a/mods/ITEMS/mcl_core/crafting.lua +++ b/mods/ITEMS/mcl_core/crafting.lua @@ -133,7 +133,7 @@ minetest.register_craft({ }) minetest.register_craft({ - output = "mcl_dye:white 9", + output = "mcl_bone_meal:bone_meal 9", recipe = { { "mcl_core:bone_block" }, },