Any Planet Start


Start on any of the first three planets: Vulcanus, Gleba, or Fulgora. Choose your planet in the startup mod settings before starting a new game. Compatible with many modded planets!

Content
2 months ago
2.0
12.2K
Transportation Environment

g ✅ removePlanet from start list

2 months ago
(updated 2 months ago)

As I get into some of the next phase of planets I'm working on, I'll be replacing various planets from the star map. To make things a bit easier for admins/players I'd like to remove starting at 'dead' planets from the any planet start list.
i.e.

---@param planet string
function APS.remove_choice(planet)
if APS.fixed_choice then return end
for k,v in pairs(setting.allowed_values) do
if v == planet
table.remove(setting.allowed_values, k)
end
end
end

2 months ago

one that also sets the default would also be nice too
---@param planet string
function APS.set_default_planet(planet)
setting.default_value = planet
end

2 months ago

I added remove_choice in 1.1.6, that was before seeing the default choice suggestion. I'll add that very quickly.

2 months ago
(updated 2 months ago)

Added APS.set_default_choice in 1.1.7

New response