1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-07-12 19:10:20 +02:00

Added the ability to place a sign onto a brass or wrought iron fence

uses code from PilzAdam's rework of thexyz's signs mod.
This commit is contained in:
Vanessa Ezekowitz
2013-02-08 02:31:40 -05:00
parent 94af6653fd
commit 178386ee53
111 changed files with 631 additions and 27 deletions

View File

@ -1321,6 +1321,29 @@ minetest.register_craft( {
},
})
-- the version of brass/wrought iron fences with signs attached
minetest.register_craft( {
type = "shapeless",
output = 'homedecor:fence_brass_with_sign',
recipe = {
'homedecor:fence_brass',
'default:sign_wall',
},
})
minetest.register_craft( {
type = "shapeless",
output = 'homedecor:fence_wrought_iron_with_sign',
recipe = {
'homedecor:fence_wrought_iron',
'default:sign_wall',
},
})
-- other types of fences/gates
minetest.register_craft( {
output = "homedecor:fence_picket 6",
recipe = {