From 73354d3a96b29ed26d39057f5479c63afd21f1b9 Mon Sep 17 00:00:00 2001 From: Duane Date: Thu, 14 Jul 2016 07:07:35 -0500 Subject: [PATCH] Change charcoal references to group. --- treegen.lua | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/treegen.lua b/treegen.lua index d6dd890..a4aaa58 100644 --- a/treegen.lua +++ b/treegen.lua @@ -247,16 +247,25 @@ minetest.register_craft({ minetest.register_craft({ output = 'default:torch 4', recipe = { - {'fun_caves:charcoal'}, + {'group:coal'}, {'group:stick'}, } }) +minetest.register_craft({ + output = 'default:coalblock', + recipe = { + {'group:coal', 'group:coal', 'group:coal'}, + {'group:coal', 'group:coal', 'group:coal'}, + {'group:coal', 'group:coal', 'group:coal'}, + } +}) + if minetest.get_modpath('tnt') then minetest.register_craft({ output = "tnt:gunpowder", type = "shapeless", - recipe = {"fun_caves:charcoal", "default:gravel"} + recipe = {"group:coal", "default:gravel"} }) end