From 4ad5a1c82327f0194b098de269a2c05d2a10a1dc Mon Sep 17 00:00:00 2001 From: acmgit Date: Sat, 30 Jul 2016 14:56:44 +0200 Subject: Billboard added, Nodes has the Entry for the visual scale. --- init.lua | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'init.lua') diff --git a/init.lua b/init.lua index 8dc3e60..8fda972 100644 --- a/init.lua +++ b/init.lua @@ -1,11 +1,12 @@ dofile(minetest.get_modpath("billboard") .. "/nodes.lua") for i,n in ipairs(bb_boardlist) do - + + -- Register the Node minetest.register_node("billboard:bb_".. n[1].."_"..n[2].."_"..n[3], { description = "Billboard " ..n[1].."_"..n[2].."_"..n[3], drawtype = "signlike", - visual_scale = 3.0, + visual_scale = n[4], tiles = { "bb_"..n[1].."_"..n[2].."_"..n[3]..".png" }, @@ -23,7 +24,8 @@ for i,n in ipairs(bb_boardlist) do legacy_wallmounted = true, }) - + + -- Register the Recipe for the Node minetest.register_craft({ output = "billboard:bb_"..n[1].."_"..n[2].."_"..n[3], recipe = { -- cgit v1.2.3