From ede7787e4ef59f40135f04963b12c2809b535234 Mon Sep 17 00:00:00 2001 From: Alexander Minges Date: Wed, 22 Jul 2015 23:43:56 +0200 Subject: [PATCH] Fix torches not being craftable --- mods/default/crafting.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mods/default/crafting.lua b/mods/default/crafting.lua index 97a7d488e..6e9d34040 100644 --- a/mods/default/crafting.lua +++ b/mods/default/crafting.lua @@ -75,7 +75,7 @@ minetest.register_craft({ }) minetest.register_craft({ - output = 'default:torch 4', + output = 'torches:torch 4', recipe = { {'default:coal_lump'}, {'default:stick'}, @@ -83,7 +83,7 @@ minetest.register_craft({ }) minetest.register_craft({ - output = 'default:torch 4', + output = 'torches:torch 4', recipe = { {'default:charcoal_lump'}, {'default:stick'}, @@ -738,7 +738,7 @@ minetest.register_craft({ minetest.register_craft({ type = "fuel", - recipe = "default:torch", + recipe = "torches:torch", burntime = 4, })