forked from minetest-mods/technic
		
	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:
		@@ -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
 | 
			
		||||
	})
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user