1
0
mirror of https://github.com/mt-mods/moretrees.git synced 2025-06-30 15:10:51 +02:00

Forgot some references to the old jungletrees and conifers nodes

when I was weeding out the legacy names and textures.  This should fix
the last of it.
This commit is contained in:
Vanessa Ezekowitz
2013-01-21 20:50:41 -05:00
parent 1b14c24ea1
commit 466fb89ec1
10 changed files with 61 additions and 60 deletions

View File

@ -66,31 +66,31 @@ minetest.register_craft({
----
minetest.register_craft({
output = "conifers:trunk_reversed 2",
output = "moretrees:fir_trunk_sideways 2",
recipe = {
{"conifers:trunk", "conifers:trunk"},
{"moretrees:fir_trunk", "fir:trunk"},
}
})
minetest.register_craft({
output = "conifers:trunk 2",
output = "moretrees:fir_trunk 2",
recipe = {
{"conifers:trunk_reversed"},
{"conifers:trunk_reversed"}
{"moretrees:fir_trunk_sideways"},
{"moretrees:fir_trunk_sideways"}
}
})
minetest.register_craft({
output = "default:wood 4",
recipe = {
{"conifers:trunk"}
{"moretrees:fir_trunk"}
}
})
minetest.register_craft({
output = "default:wood 4",
recipe = {
{"conifers:trunk_reversed"}
{"moretrees:fir_trunk_sideways"}
}
})