aboutsummaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authoracmgit <undertakers_help@yahoo.com>2016-07-30 14:56:44 +0200
committeracmgit <undertakers_help@yahoo.com>2016-07-30 14:56:44 +0200
commit4ad5a1c82327f0194b098de269a2c05d2a10a1dc (patch)
tree60faf260935b61c91f2eef1a625e0f060f661ea9 /init.lua
parent6fa4db8a87d04fb193cf6b900525aeb3b1fe7eba (diff)
downloadbillboard-4ad5a1c82327f0194b098de269a2c05d2a10a1dc.tar.gz
billboard-4ad5a1c82327f0194b098de269a2c05d2a10a1dc.tar.bz2
billboard-4ad5a1c82327f0194b098de269a2c05d2a10a1dc.zip
Billboard added, Nodes has the Entry for the visual scale.
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua8
1 files changed, 5 insertions, 3 deletions
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 = {