For those who are faced with the problem of centrifuge recipes. You need to unzip the mod, find the file prototypes/lunaris/entety/enteties.lua
And there on approximately line 483 there is a description of the centrifuge functionality, find fluid_boxes there and replace it with
fluid_boxes =
{
{
production_type = "input",
pipe_picture = lunariccentrifugepipepictures(),
pipe_covers = lunaricpipecoverspictures(),
volume = 1000,
pipe_connections = {{ flow_direction="input", direction = defines.direction.south, position = {0, 1}, connection_category = {"lunar_connection"} }},
secondary_draw_orders = { north = -1 }
},
{
production_type = "output",
pipe_picture = lunariccentrifugepipepictures(),
pipe_covers = lunaricpipecoverspictures(),
volume = 1000,
pipe_connections = {{ flow_direction="output", direction = defines.direction.north, position = {0, -1}, connection_category = {"lunaric_connection"} }},
secondary_draw_orders = { north = -1 }
},
},