mirror of
https://github.com/mt-mods/pipeworks.git
synced 2025-03-25 02:22:28 +01:00
fix a missed function name (due to being renamed)
This commit is contained in:
@ -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)
|
||||||
|
Reference in New Issue
Block a user