Fix frags in frags creating a large empty space (#8430)

* Fix frags in frags creating a large empty space

* Change suppression message

Consistency with status duration

* Too little space between boxes
This commit is contained in:
MEEPofFaith
2023-03-26 08:53:46 -07:00
committed by GitHub
parent af26e60a4f
commit fcb44e4952
2 changed files with 2 additions and 2 deletions

View File

@@ -993,7 +993,7 @@ bullet.splashdamage = [stat]{0}[lightgray] area dmg ~ [stat]{1}[lightgray] tiles
bullet.incendiary = [stat]incendiary bullet.incendiary = [stat]incendiary
bullet.homing = [stat]homing bullet.homing = [stat]homing
bullet.armorpierce = [stat]armor piercing bullet.armorpierce = [stat]armor piercing
bullet.suppression = [stat]{0} sec[lightgray] repair suppression ~ [stat]{1}[lightgray] tiles bullet.suppression = [stat]{0}[lightgray] seconds of repair suppression ~ [stat]{1}[lightgray] tiles
bullet.interval = [stat]{0}/sec[lightgray] interval bullets: bullet.interval = [stat]{0}/sec[lightgray] interval bullets:
bullet.frags = [stat]{0}[lightgray]x frag bullets: bullet.frags = [stat]{0}[lightgray]x frag bullets:
bullet.lightning = [stat]{0}[lightgray]x lightning ~ [stat]{1}[lightgray] damage bullet.lightning = [stat]{0}[lightgray]x lightning ~ [stat]{1}[lightgray] damage

View File

@@ -448,7 +448,7 @@ public class StatValues{
bt.row(); bt.row();
bt.add(coll); bt.add(coll);
} }
}).padLeft(indent * 8).growX().pad(5).margin(compact ? 0 : 10); }).padLeft(indent * 5).padTop(5).padBottom(compact ? 0 : 5).growX().margin(compact ? 0 : 10);
table.row(); table.row();
} }
}; };