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:
23
crafts.lua
23
crafts.lua
@ -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 = {
|
||||
|
Reference in New Issue
Block a user