1
0
mirror of https://github.com/mt-mods/pipeworks.git synced 2025-05-13 22:30:21 +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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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},