1
0
mirror of https://github.com/mt-mods/pipeworks.git synced 2025-05-23 03:10:31 +02:00

fix #161 - change digilines:receptor_send -> digilines.receptor_send

This commit is contained in:
wsor4035 2025-05-18 21:18:43 -04:00 committed by GitHub
parent ad8984c72b
commit e23a2fda3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)
-----------------------