From 873e33ec7002ac63cc1050c839313d3399ef125e Mon Sep 17 00:00:00 2001 From: Casimir Date: Sun, 10 Mar 2013 22:54:47 +0100 Subject: [PATCH] Make sandstone only craftable with normal sand With group:sand it would be possible to craft 4 desertsand ---> sandstone ---> 4 normal sand. Therefor only use default:sand. --- mods/default/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/default/init.lua b/mods/default/init.lua index 1f2c4f7d..ae48dd9b 100644 --- a/mods/default/init.lua +++ b/mods/default/init.lua @@ -417,8 +417,8 @@ minetest.register_craft({ minetest.register_craft({ output = 'default:sandstone', recipe = { - {'group:sand', 'group:sand'}, - {'group:sand', 'group:sand'}, + {'default:sand', 'default:sand'}, + {'default:sand', 'default:sand'}, } })