Fix toggling of autocrafter when `digilines` is not installed (#5)

Co-authored-by: SX <50966843+S-S-X@users.noreply.github.com>
This commit is contained in:
zichen 2021-12-26 14:12:15 +08:00 committed by GitHub
parent a70115ab8d
commit 7d3a61e595
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -277,8 +277,7 @@ minetest.register_node("pipeworks:autocrafter", {
update_meta(meta, false)
end,
on_receive_fields = function(pos, formname, fields, sender)
if not fields.channel or (fields.quit and not fields.key_enter_field)
or not pipeworks.may_configure(pos, sender) then
if (fields.quit and not fields.key_enter_field) or not pipeworks.may_configure(pos, sender) then
return
end
local meta = minetest.get_meta(pos)