diff --git a/torch_arrow.lua b/torch_arrow.lua index d49fcc7..8165ea3 100644 --- a/torch_arrow.lua +++ b/torch_arrow.lua @@ -129,13 +129,13 @@ minetest.register_entity("throwing:arrow_torch_entity", THROWING_ARROW_ENTITY) minetest.register_craft({ output = 'throwing:arrow_torch 4', recipe = { - {'default:stick', 'default:stick', 'default:coal'}, + {'default:stick', 'default:stick', 'group:coal'}, } }) minetest.register_craft({ output = 'throwing:arrow_torch 4', recipe = { - {'default:coal', 'default:stick', 'default:stick'}, + {'group:coal', 'default:stick', 'default:stick'}, } })