From e23a2fda3dbd68055a5751e65dbaddd6f0720c02 Mon Sep 17 00:00:00 2001 From: wsor4035 <24964441+wsor4035@users.noreply.github.com> Date: Sun, 18 May 2025 21:18:43 -0400 Subject: [PATCH] fix #161 - change digilines:receptor_send -> digilines.receptor_send --- tubes/lua.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubes/lua.lua b/tubes/lua.lua index 38fd639..7807b02 100644 --- a/tubes/lua.lua +++ b/tubes/lua.lua @@ -729,7 +729,7 @@ mesecon.queue:add_function("pipeworks:lt_digiline_relay", function (pos, channel if (minetest.get_meta(pos):get_int("luac_id") ~= luac_id) then return end if (minetest.registered_nodes[minetest.get_node(pos).name].is_burnt) then return end -- The actual work - digilines:receptor_send(pos, digiline_rules_luatube, channel, msg) + digilines.receptor_send(pos, digiline_rules_luatube, channel, msg) end) -----------------------