There are some files you can modify to access this information.
GUI\~GalaxyMap\@PlanetRow.lua, line 798. Change
Code: Select all
if star.type=='hsa'
bottom_bar.title | format("Anomaly: %s",star.name)
else
bottom_bar.title(star.name .. ' System')
end
Code: Select all
if star.type=='hsa'
bottom_bar.title | format("Anomaly: %s",star.name)
else
local label = star.name .. ' System'
if not gui_player().scanned?[star]
label ..= ' (Unscanned)'
end
bottom_bar.title(label)
end
Code: Select all
local rx,ry,rw,rh = box_grow(20,0,bottom_bar.title(star.name .. ' System'))
Code: Select all
local label = star.name .. ' System'
if not gui_player().scanned?[star]
label ..= ' (Unscanned)'
end
local rx,ry,rw,rh = box_grow(20,0,bottom_bar.title(label))
Code: Select all
if not gui_player().explored[star]
name=uncharted_star_title![star.type]
end
Code: Select all
if not gui_player().explored[star]
name=uncharted_star_title![star.type]
else
if not gui_player().scanned?[star]
name..= ' (Unscanned)'
end
end