Hey I also have an issue with trying to get my system initialized how I want it to. Currently the system is created where specified on my map, but it is not being initialized in the way I want it to.
the Code is here
It is being created in my system initializer like this
Dunno what is going on, has anyone experienced something like this where the system initializer does not trigger?
The error log says [14:20:11][galaxy_generator.cpp:1103]: failed to find initializer or random_list emporia_system_initializer for system [157].
Edit: For anyone who is trying to solve this later, what I forgot to do when moving my mod into position was place the system generators into the common folder. Once I did that it was fixed
the Code is here
Code:
emporia_system_initializer = {
name = "Emporia"
class = "rl_standard_stars"
asteroid_distance = 127
planet = {
class = star
orbit_distance = 0
size = 20
}
planet = {
name = "Phillimore"
class = "pc_barren"
orbit_distance = 30
orbit_angle = 65
size = 17
has_ring = no
}
planet = {
name = "Alexandria"
class = "pc_barren"
orbit_distance = 45
orbit_angle = 219
size = 20
has_ring = no
}
planet = {
name = "Brunswick"
class = "pc_barren"
orbit_distance = 98
orbit_angle = 309
size = 8
has_ring = no
}
}
It is being created in my system initializer like this
Code:
system = { id = "157" name = "Emporia" position = { x = 47 y = 83 } initializer = emporia_system_initializer }
Dunno what is going on, has anyone experienced something like this where the system initializer does not trigger?
The error log says [14:20:11][galaxy_generator.cpp:1103]: failed to find initializer or random_list emporia_system_initializer for system [157].
Edit: For anyone who is trying to solve this later, what I forgot to do when moving my mod into position was place the system generators into the common folder. Once I did that it was fixed
Last edited: