From 3ba2dbd1bdbee7df490fb7b21946dbf2a4c8c711 Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Mon, 20 Aug 2018 20:25:44 -0400 Subject: [PATCH] use string.char(10) for newline, like it should be (since colors are now strings) --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index b0d1715..ad8119b 100644 --- a/init.lua +++ b/init.lua @@ -224,7 +224,7 @@ led_marquee.display_msg = function(pos, channel, msg) elseif string.match(node.name, "led_marquee:char_") and fdir ~= master_fdir or (setchan ~= nil and setchan ~= "" and setchan ~= channel) then break - elseif asc == 28 then + elseif asc == 10 then pos2.x = pos.x pos2.y = pos2.y-1 pos2.z = pos.z