From cdf33a38813dc94f20a83b8bdcef760cc7c50781 Mon Sep 17 00:00:00 2001 From: Splizard Date: Mon, 9 Jun 2014 13:52:12 +1200 Subject: [PATCH] Use default nodenames. --- src/crafting.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/crafting.lua b/src/crafting.lua index 529bb59..6d7b594 100644 --- a/src/crafting.lua +++ b/src/crafting.lua @@ -126,12 +126,12 @@ minetest.register_craft({ --Craft icy snow. minetest.register_craft({ type = "shapeless", - output = 'default:snow_cobble 2', + output = 'default:snow_cobble 3', recipe = { - 'snow:snow', - 'snow:snow', - 'snow:ice', - 'snow:ice' + 'default:snow', + 'default:snow', + 'default:ice', + 'defaul:ice' } }) @@ -139,8 +139,8 @@ minetest.register_craft({ type = "shapeless", output = 'default:snow_cobble', recipe = { - 'snow:snow', - 'snow:ice' + 'default:snow', + 'defaul:ice' } })