From 5826209f165e2bda8fcb269dbd9d1441f19aeac7 Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Fri, 17 Aug 2018 11:20:49 -0400 Subject: [PATCH] always reset the scroll index to 1 on any new displayed message --- init.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init.lua b/init.lua index bda8c2b..7924f38 100644 --- a/init.lua +++ b/init.lua @@ -182,11 +182,13 @@ local on_digiline_receive_string = function(pos, node, channel, msg) msg = string.rep(" ", 1024) meta:set_string("last_msg", msg) led_marquee.display_msg(pos, channel, msg) + meta:set_int("index", 1) elseif msg == "allon_multi" then led_marquee.set_timer(pos, 0) msg = string.rep(string.char(144), 1024) meta:set_string("last_msg", msg) led_marquee.display_msg(pos, channel, msg) + meta:set_int("index", 1) elseif msg == "start_scroll" then local timeout = meta:get_int("timeout") if not timeout or timeout < 0.5 or timeout > 5 then timeout = 0 end @@ -211,12 +213,15 @@ local on_digiline_receive_string = function(pos, node, channel, msg) led_marquee.set_timer(pos, 0) meta:set_string("last_msg", msg) led_marquee.display_msg(pos, channel, msg) + meta:set_int("index", 1) + end else local asc = string.byte(msg) if asc > 30 and asc < 256 then minetest.swap_node(pos, { name = "led_marquee:char_"..asc, param2 = fdir + (last_color*8)}) meta:set_string("last_msg", tostring(msg)) + meta:set_int("index", 1) elseif asc < 28 then last_color = asc meta:set_int("last_color", asc) @@ -225,6 +230,7 @@ local on_digiline_receive_string = function(pos, node, channel, msg) elseif msg and type(msg) == "number" then meta:set_string("last_msg", tostring(msg)) led_marquee.display_msg(pos, channel, tostring(msg)) + meta:set_int("index", 1) end end