forked from mtcontrib/pipeworks
fix a missed function name (due to being renamed)
This commit is contained in:
parent
784634f0da
commit
e1435b1c2f
|
@ -592,7 +592,7 @@ for fill = 0, 10 do
|
||||||
walkable = true,
|
walkable = true,
|
||||||
drop = "pipeworks:storage_tank_"..fill,
|
drop = "pipeworks:storage_tank_"..fill,
|
||||||
after_place_node = function(pos)
|
after_place_node = function(pos)
|
||||||
pipe_look_for_stackable_tanks(pos)
|
pipeworks.look_for_stackable_tanks(pos)
|
||||||
pipeworks.scan_for_pipe_objects(pos)
|
pipeworks.scan_for_pipe_objects(pos)
|
||||||
end,
|
end,
|
||||||
after_dig_node = function(pos)
|
after_dig_node = function(pos)
|
||||||
|
@ -617,7 +617,7 @@ for fill = 0, 10 do
|
||||||
sounds = default.node_sound_wood_defaults(),
|
sounds = default.node_sound_wood_defaults(),
|
||||||
walkable = true,
|
walkable = true,
|
||||||
after_place_node = function(pos)
|
after_place_node = function(pos)
|
||||||
pipe_look_for_stackable_tanks(pos)
|
pipeworks.look_for_stackable_tanks(pos)
|
||||||
pipeworks.scan_for_pipe_objects(pos)
|
pipeworks.scan_for_pipe_objects(pos)
|
||||||
end,
|
end,
|
||||||
after_dig_node = function(pos)
|
after_dig_node = function(pos)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user