Misc minor fixes

This commit is contained in:
Anuken
2022-07-15 20:25:42 -04:00
parent 830a771a90
commit d3210a0831
3 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@@ -5197,7 +5197,7 @@ public class Blocks{
size = 3; size = 3;
configurable = false; configurable = false;
plans.add(new UnitPlan(UnitTypes.elude, 60f * 45f, with(Items.graphite, 50, Items.silicon, 70))); plans.add(new UnitPlan(UnitTypes.elude, 60f * 40f, with(Items.graphite, 50, Items.silicon, 70)));
regionSuffix = "-dark"; regionSuffix = "-dark";
fogRadius = 3; fogRadius = 3;
researchCostMultiplier = 0.5f; researchCostMultiplier = 0.5f;

View File

@@ -850,7 +850,7 @@ public class PlanetDialog extends BaseDialog implements PlanetInterfaceRenderer{
c.table(t -> { c.table(t -> {
for(UnlockableContent uc : sector.info.resources){ for(UnlockableContent uc : sector.info.resources){
if(uc == null) continue; if(uc == null) continue;
t.image(uc.uiIcon).padRight(3).size(iconSmall); t.image(uc.uiIcon).scaling(Scaling.fit).padRight(3).size(iconSmall);
} }
}).padLeft(10f).left().row(); }).padLeft(10f).left().row();
} }