From 995a17789f729b12da9c9e66d9901c8df5bc9202 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Sat, 20 Jun 2015 03:35:51 -0400 Subject: [PATCH] remove some debug statements --- init.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 12e9433..337904b 100644 --- a/init.lua +++ b/init.lua @@ -48,13 +48,12 @@ local on_digiline_receive_std = function(pos, node, channel, msg) end local on_digiline_receive_deca = function(pos, node, channel, msg) - print("called digiline_receive_deca") + local meta = minetest.get_meta(pos) local setchan = meta:get_string("channel") if setchan ~= channel then return end tubenum = string.gsub(node.name, "nixie_tubes:decatron_", "") local num = tonumber(msg) - print(dump(msg)) if msg == "off" or (num and (num >= 0 and num <= 9)) then minetest.swap_node(pos, { name = "nixie_tubes:decatron_"..msg, param2 = node.param2})