mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-13 05:50:41 +01:00
Actually detect if the machine should call pipeworks.after_place
The tube variable in these contexts always evaluates to a true value. data.tube is the variable that indicates if pipeworks needs to be notified.
This commit is contained in:
parent
976f1017a7
commit
95a6555955
|
@ -195,7 +195,7 @@ function technic.register_battery_box(data)
|
|||
allow_metadata_inventory_take = technic.machine_inventory_take,
|
||||
allow_metadata_inventory_move = technic.machine_inventory_move,
|
||||
technic_run = run,
|
||||
after_place_node = tube and pipeworks.after_place,
|
||||
after_place_node = data.tube and pipeworks.after_place,
|
||||
after_dig_node = technic.machine_after_dig_node
|
||||
})
|
||||
end
|
||||
|
|
|
@ -109,7 +109,7 @@ function technic.register_generator(data)
|
|||
allow_metadata_inventory_take = technic.machine_inventory_take,
|
||||
allow_metadata_inventory_move = technic.machine_inventory_move,
|
||||
technic_run = run,
|
||||
after_place_node = tube and pipeworks.after_place,
|
||||
after_place_node = data.tube and pipeworks.after_place,
|
||||
after_dig_node = technic.machine_after_dig_node
|
||||
})
|
||||
|
||||
|
|
|
@ -153,7 +153,7 @@ function technic.register_base_machine(data)
|
|||
allow_metadata_inventory_take = technic.machine_inventory_take,
|
||||
allow_metadata_inventory_move = technic.machine_inventory_move,
|
||||
technic_run = run,
|
||||
after_place_node = tube and pipeworks.after_place,
|
||||
after_place_node = data.tube and pipeworks.after_place,
|
||||
after_dig_node = technic.machine_after_dig_node
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user