From 7252b85a803b4546bb267ac4b9b632226b3ad983 Mon Sep 17 00:00:00 2001 From: ExcaliburZero Date: Sun, 15 Mar 2015 14:01:59 -0400 Subject: [PATCH] Fixed torch arrow crafting recipe Replaced the incorrect default:coal in the torch arrow's crafting recipe with the correct default:coal_lump . --- torch_arrow.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/torch_arrow.lua b/torch_arrow.lua index d49fcc7..11e2f31 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', 'default:coal_lump'}, } }) minetest.register_craft({ output = 'throwing:arrow_torch 4', recipe = { - {'default:coal', 'default:stick', 'default:stick'}, + {'default:coal_lump', 'default:stick', 'default:stick'}, } })