Fix findRandomWorld not accounting for satellites

This commit is contained in:
DBotThePony 2024-04-04 10:59:17 +07:00
parent cb384be77a
commit aea534add4
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -152,7 +152,15 @@ class ServerUniverse private constructor(marker: Nothing?) : Universe(), Closeab
val y = random.nextRange(baseInformation.xyCoordRange)
val result = scanSystems<UniversePos>(rect + Vector2i(x, y)) {
val children = children(it)
val children = ArrayList<UniversePos>()
for (planet in children(it)) {
children.add(planet)
for (satellite in children(planet)) {
children.add(satellite)
}
}
if (children.isEmpty())
return@scanSystems KOptional()