1
0
mirror of https://github.com/Anuken/Mindustry.git synced 2024-10-06 12:57:17 +03:00

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;
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";
fogRadius = 3;
researchCostMultiplier = 0.5f;

View File

@ -850,7 +850,7 @@ public class PlanetDialog extends BaseDialog implements PlanetInterfaceRenderer{
c.table(t -> {
for(UnlockableContent uc : sector.info.resources){
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();
}