diff options
author | tenplus1 <kinsellaja@yahoo.com> | 2015-05-20 16:57:17 +0100 |
---|---|---|
committer | tenplus1 <kinsellaja@yahoo.com> | 2015-05-20 16:57:17 +0100 |
commit | f438eadeb98c75252fe550ac2366b06db5022406 (patch) | |
tree | dc93fe7758bf55f4f87f69a47cc4c07efed5400d /wood.lua | |
parent | 57240fe6f540164860b08d0afa6b8d5621d8ceda (diff) |
Fixed light_max, added scorched wood recipe
Diffstat (limited to 'wood.lua')
-rw-r--r-- | wood.lua | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -147,6 +147,15 @@ minetest.register_node("ethereal:scorched_tree", { -- Scorched Trunk paramtype2 = "facedir", }) +minetest.register_craft({ + output = "ethereal:scorched_tree 8", + recipe = { + {"group:tree", "group:tree", "group:tree"}, + {"group:tree", "default:torch", "group:tree"}, + {"group:tree", "group:tree", "group:tree"}, + } +}) + minetest.register_node("ethereal:mushroom_trunk", { -- Mushroom Trunk description = "Mushroom", tiles = {"mushroom_trunk_top.png", "mushroom_trunk_top.png", "mushroom_trunk.png"}, |