Fix detection of 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:
Jay Arndt 2015-03-07 19:45:57 -06:00 committed by ShadowNinja
parent c8cbd261ee
commit 0113975160
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

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

View File

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