summaryrefslogtreecommitdiff
path: root/callbuttons.lua
diff options
context:
space:
mode:
Diffstat (limited to 'callbuttons.lua')
-rw-r--r--callbuttons.lua12
1 files changed, 10 insertions, 2 deletions
diff --git a/callbuttons.lua b/callbuttons.lua
index 4dfe056..961d96e 100644
--- a/callbuttons.lua
+++ b/callbuttons.lua
@@ -115,8 +115,15 @@ for _,state in ipairs(validstates) do
local boringside = "[combine:64x64:0,0=celevator_cabinet_sides.png:32,0=celevator_cabinet_sides.png:0,32=celevator_cabinet_sides.png:32,32=celevator_cabinet_sides.png"
local nname = "celevator:callbutton_"..state[1]
local dropname = nname
- if state[2] then nname = nname.."_upon" end
- if state[3] then nname = nname.."_downon" end
+ local light = 0
+ if state[2] then
+ nname = nname.."_upon"
+ light = light + 5
+ end
+ if state[3] then
+ nname = nname.."_downon"
+ light = light + 5
+ end
local idle = not (state[2] or state[3])
local description = string.format("Elevator %s Call Button%s%s",state[4],(state[1] == "both" and "s" or ""),(idle and "" or " (on state, you hacker you!)"))
minetest.register_node(nname,{
@@ -142,6 +149,7 @@ for _,state in ipairs(validstates) do
},
paramtype = "light",
paramtype2 = "facedir",
+ light_source = light,
drawtype = "nodebox",
node_box = {
type = "fixed",