diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-12-06 10:48:31 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-12-06 10:48:31 +0000 |
commit | adabd04d7b33ffa6d2a91c521cf713e092b3dc6f (patch) | |
tree | 53b43944945dc255800c343ecad39963a4a90bd3 /extra.lua | |
parent | f34b9b00c6c1e025754a71536ffd1b112cbce874 (diff) |
Few new tweaks thanks to RQWorldblender
Diffstat (limited to 'extra.lua')
-rw-r--r-- | extra.lua | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -42,6 +42,8 @@ minetest.register_craft({ } }) +if ethereal.xcraft == true then + -- X pattern craft recipes (5x 'a' in X pattern gives 5 of 'b') local cheat = { {"default:cobble", "default:gravel", 5}, @@ -63,6 +65,8 @@ for n = 1, #cheat do }) end +end -- END if + -- Paper (2x3 string = 4 paper) minetest.register_craft({ output = "default:paper 4", @@ -215,10 +219,9 @@ minetest.register_node("ethereal:glostone", { }) minetest.register_craft({ + type = "shapeless", output = "ethereal:glostone", - recipe = { - {"default:torch", "default:stone", "dye:yellow"}, - } + recipe = {"default:torch", "default:stone", "dye:yellow"} }) -- Charcoal Lump |