From b25b3ef9959fadeb283c754c88da0511ed27b6a8 Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Fri, 17 Aug 2018 11:17:09 -0400 Subject: [PATCH] use proper form of digilines.receptor_send() --- init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index 39bc9ac..bda8c2b 100644 --- a/init.lua +++ b/init.lua @@ -202,11 +202,11 @@ local on_digiline_receive_string = function(pos, node, channel, msg) elseif msg == "scroll_step" then led_marquee.scroll_text(pos) elseif msg == "get" then -- get the master panel's displayed char as ASCII numerical value - digiline:receptor_send(pos, digiline.rules.default, channel, tonumber(string.match(minetest.get_node(pos).name,"led_marquee:char_(.+)"))) -- wonderfully horrible string manipulaiton + digilines.receptor_send(pos, digiline.rules.default, channel, tonumber(string.match(minetest.get_node(pos).name,"led_marquee:char_(.+)"))) -- wonderfully horrible string manipulaiton elseif msg == "getstr" then -- get the last stored message - digiline:receptor_send(pos, digiline.rules.default, channel, meta:get_string("last_msg")) + digilines.receptor_send(pos, digiline.rules.default, channel, meta:get_string("last_msg")) elseif msg == "getindex" then -- get the scroll index - digiline:receptor_send(pos, digiline.rules.default, channel, meta:get_int("index")) + digilines.receptor_send(pos, digiline.rules.default, channel, meta:get_int("index")) else led_marquee.set_timer(pos, 0) meta:set_string("last_msg", msg)