1
0
mirror of https://github.com/mt-mods/pipeworks.git synced 2025-06-28 22:36:31 +02:00

change digilines:receptor_send -> digilines.receptor_send (#160)

This commit is contained in:
Matt Chandler
2025-05-08 20:52:08 -08:00
committed by GitHub
parent 8d34ff9079
commit e657d0476a
2 changed files with 2 additions and 2 deletions

View File

@ -625,7 +625,7 @@ minetest.register_node("pipeworks:autocrafter", {
end
local setchan = meta:get_string("channel")
local output = inv:get_stack("output", 1)
digilines:receptor_send(pos, digilines.rules.default, setchan, {
digilines.receptor_send(pos, digilines.rules.default, setchan, {
recipe = recipe,
result = {
name = output:get_name(),

View File

@ -89,7 +89,7 @@ if digiline_enabled and pipeworks.enable_digiline_detector_tube then
local setchan = meta:get_string("channel")
digilines:receptor_send(pos, digilines.rules.default, setchan, stack:to_table())
digilines.receptor_send(pos, digilines.rules.default, setchan, stack:to_table())
return pipeworks.notvel(pipeworks.meseadjlist, velocity)
end},