update homedecor and ilights again
This commit is contained in:
parent
37af9265fa
commit
df1a6aaf1e
@ -103,7 +103,7 @@ if minetest.get_modpath("digilines") then
|
||||
local setchan = meta:get_string("channel")
|
||||
if setchan ~= channel then return end
|
||||
|
||||
if msg and msg ~= "" and type(msg) == "string" then
|
||||
if msg ~= "" and (type(msg) == "string" or type(msg) == "number" ) then
|
||||
local n = tonumber(msg)
|
||||
local suff = word_to_bright[msg] or "invalid"
|
||||
|
||||
|
@ -86,7 +86,7 @@ if minetest.get_modpath("digilines") then
|
||||
local setchan = meta:get_string("channel")
|
||||
|
||||
if setchan ~= channel then return end
|
||||
if msg and msg ~= "" and type(msg) == "string" then
|
||||
if msg ~= "" and (type(msg) == "string" or type(msg) == "number" ) then
|
||||
local n = tonumber(msg)
|
||||
if n then
|
||||
msg = (n > 3) and "on" or "off" -- same threshold as in homedecor's lights
|
||||
|
Loading…
x
Reference in New Issue
Block a user