From 79a546378e24bf958b0eb36fd772cd85a4efe3d4 Mon Sep 17 00:00:00 2001 From: echoes91 Date: Mon, 16 Mar 2015 15:23:29 +0100 Subject: [PATCH] Fixed torch arrow recipe --- torch_arrow.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'}, } })