This commit is contained in:
Anuken
2025-10-08 08:24:14 +09:00
parent fd0d864cb8
commit 576b7f6b6b

View File

@@ -218,7 +218,7 @@ public class ResearchDialog extends BaseDialog{
//first, find a planets associated with the current tech tree
rootPlanets.clear();
for(var planet : content.planets()){
if(planet.techTree == lastNode){
if(planet.techTree == lastNode || lastNode.planet == planet){
rootPlanets.add(planet);
}
}