diff options
author | root <root@linuxworks.belug.de> | 2017-10-08 12:58:27 +0200 |
---|---|---|
committer | root <root@linuxworks.belug.de> | 2017-10-08 12:58:27 +0200 |
commit | 31e998894d2aa44260361765d55339b37d919cd6 (patch) | |
tree | 3d8a4be285d21777d3558c37e2e1cf82e5337a06 /crafts.lua | |
parent | 05dca9426ebaad3cb09c96e7dc0aac91508e02e5 (diff) | |
parent | c9add9b24df439253ef2eb02bef19ba2f2771dc9 (diff) |
Merge branch 'master' of https://github.com/minetest-mods/moretrees
Diffstat (limited to 'crafts.lua')
-rw-r--r-- | crafts.lua | 16 |
1 files changed, 0 insertions, 16 deletions
@@ -4,14 +4,6 @@ for i in ipairs(moretrees.treelist) do local treename = moretrees.treelist[i][1] minetest.register_craft({ - output = "moretrees:"..treename.."_trunk 2", - recipe = { - {"moretrees:"..treename.."_trunk_sideways"}, - {"moretrees:"..treename.."_trunk_sideways"} - } - }) - - minetest.register_craft({ type = "shapeless", output = "moretrees:"..treename.."_planks 4", recipe = { @@ -20,14 +12,6 @@ for i in ipairs(moretrees.treelist) do }) minetest.register_craft({ - type = "shapeless", - output = "moretrees:"..treename.."_planks 4", - recipe = { - "moretrees:"..treename.."_trunk_sideways" - } - }) - - minetest.register_craft({ type = "fuel", recipe = "moretrees:"..treename.."_sapling", burntime = 10, |