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