OK, I have an idea, but I need to know if this will work.
Can you have both of these lines at once, or no?
is_ground_content = true
AND
legacy_wallmounted = true
Or, is there a way to combine the two.
VanessaE wrote:Neither of those options is useful these days. What are you trying to accomplish?
--Rope Fence Mod by Tedypig, Licence WTFPL (Textures+Code), Edit how you want.
minetest.register_node ('rope_fence:rope_fence', {
discription "Adds a rope fence to your game.",
drawtype= 'fencelike',
tile_images {rope_fence.png, rope_fence_top.png, rope_fence_side.png},
inventory_image {rope_fence.png},
sunlight_propagates = true,
paramtype = 'light',
walkable = false,
material = minetest.digprop_constanttime(1.0),
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,},
})
minetest.register_craft ({
output='rope_fence:rope_fence',
recipe= {
{'default:stick','','default:stick'},
{'default_stick','','default:stick'},
{'default:stick','','default:stick'},
}
})
VanessaE wrote:You misspelled "description"
Tedypig wrote:discription "Adds a rope fence to your game.",
Users browsing this forum: No registered users and 6 guests