update homedecor and ilights again

This commit is contained in:
Vanessa Dannenberg 2019-09-19 20:56:54 -04:00
parent 37af9265fa
commit df1a6aaf1e
2 changed files with 2 additions and 2 deletions

View File

@ -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"

View File

@ -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