Merging changes from private branch

This commit is contained in:
Anuken
2025-04-04 11:47:35 -04:00
parent cf5c6d0905
commit b7dbe54d76
161 changed files with 2484 additions and 1137 deletions
+3 -1
View File
@@ -29,7 +29,9 @@ public enum BlockFlag{
launchPad,
unitCargoUnloadPoint,
unitAssembler,
hasFogRadius;
hasFogRadius,
steamVent,
blockRepair;
public final static BlockFlag[] all = values();
@@ -581,18 +581,14 @@ public class StatValues{
int count = 0;
for(Ability ability : abilities){
if(ability.display){
t.table(Styles.grayPanel, a -> {
a.add("[accent]" + ability.localized()).padBottom(4).center().top().expandX();
a.row();
a.left().top().defaults().left();
ability.addStats(a);
}).pad(5).margin(10).growX().top().uniformX();
ability.display(t);
if((++count) == 2){
count = 0;
t.row();
}
}
};
}
});
};
}