From 7ce02f350871d09efd8e3ce655acea1db113c044 Mon Sep 17 00:00:00 2001 From: 1F616EMO Date: Sat, 20 Apr 2024 06:45:35 +0800 Subject: [PATCH] fix injector --- technic/machines/other/injector.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/technic/machines/other/injector.lua b/technic/machines/other/injector.lua index 0f02d71f..1d0a3e94 100644 --- a/technic/machines/other/injector.lua +++ b/technic/machines/other/injector.lua @@ -152,9 +152,9 @@ minetest.register_node("technic:injector", { allow_metadata_inventory_put = technic.machine_inventory_put, allow_metadata_inventory_take = technic.machine_inventory_take, allow_metadata_inventory_move = technic.machine_inventory_move, - on_metadata_inventory_move = technic.machine_on_inventory_move(nodename), - on_metadata_inventory_put = technic.machine_on_inventory_put(nodename), - on_metadata_inventory_take = technic.machine_on_inventory_take(nodename), + on_metadata_inventory_move = technic.machine_on_inventory_move("technic:injector"), + on_metadata_inventory_put = technic.machine_on_inventory_put("technic:injector"), + on_metadata_inventory_take = technic.machine_on_inventory_take("technic:injector"), after_place_node = pipeworks.after_place, after_dig_node = pipeworks.after_dig })