Enjoying your work, but am encountering issues with modding myself. and it's just about the space map's placement of planets.
I humbly ask you to remove compat/tiber.lua from being called in data-final-fixes.lua.
You could use PlanetsLib:update to move its position/orientation called from data-updates.lua instead
something like this would do:
PlanetsLib:update({
{
type = "planet",
name = "tiber",
orbit = {
parent = { type = "space-location", name = "alpha_p" },
distance = 25, (or whatever distance you want)
orientation = 0.35
}
}
})
thank you!