Ignore remote firmware updates if the channel is blank

This commit is contained in:
Carter Kolwey 2016-12-24 21:38:41 -06:00
parent 7f85da7de7
commit c57fc53de2
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ local digiline = {
action = function(pos, node, channel, msg)
local meta = minetest.get_meta(pos)
local setchan = meta:get_string("channel")
if channel == setchan then
if setchan ~= "" and channel == setchan then
mesecon.program_luac(pos,msg)
else
run(pos, {type = "digiline", channel = channel, msg = msg})