From e372cdccceb43aaa7fc7184abd1a589f4a5999cf Mon Sep 17 00:00:00 2001 From: Joachim Stolberg Date: Sun, 1 Jul 2018 20:24:35 +0200 Subject: [PATCH] display delay reduced to one sec. --- smartline/display.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/smartline/display.lua b/smartline/display.lua index 61fb9d5..c253c9e 100644 --- a/smartline/display.lua +++ b/smartline/display.lua @@ -132,19 +132,19 @@ tubelib.register_node("smartline:display", {}, { local meta = minetest.get_meta(pos) add_line(meta, payload) if not timer:is_started() then - timer:start(2) + timer:start(1) end elseif topic == "row" then -- overwrite the given row local meta = minetest.get_meta(pos) write_row(meta, payload) if not timer:is_started() then - timer:start(2) + timer:start(1) end elseif topic == "clear" then -- clear the screen local meta = minetest.get_meta(pos) meta:set_string("text", "") if not timer:is_started() then - timer:start(2) + timer:start(1) end end end,