Skip to content

Commit

Permalink
fix injector
Browse files Browse the repository at this point in the history
  • Loading branch information
Emojigit committed Apr 19, 2024
1 parent 1691b60 commit 7ce02f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions technic/machines/other/injector.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
})
Expand Down

0 comments on commit 7ce02f3

Please sign in to comment.