file > Stars in Shadow\Lua state\GUI\~GalaxyMap\@PlanetPane.lua
Code: Select all
if char_pressed 'E'
select_next_planet {planet=selected_planet}
end
-- add below --
if char_pressed 'B'
order.buy_production(selected_planet)
end
file > Stars in Shadow\Lua state\Orders\production.lua
Code: Select all
local new_planet = new_planet_ref {
type='Barren',
minerals='Normal',
..size,
..planet.star,
..kW_m2,
..orbit,
day_length=32,
rarity='common',
temperature = get_temperature(kW_m2),
-- comment off below --
-- name = 'Artificial Planet' ,
-- add below --
name = (star.name .. " " .. to_roman(orbit)),
We can use [Q] & [E] key to navigate between previous/next planet but can't [Buy] (using keyboard), so with Fix#1, in sort by 'Activities', I can [E] & to quickly buy the productions. The only problem is the planets after [buying productions] will many times be sorted 'up' the list and the 'supposedly next' planet need some work finding......
Help yourself to these fixes if you want. Cheers!