Bridge fixes

This commit is contained in:
Anuken
2020-09-11 13:36:10 -04:00
parent 83d9bd7d81
commit 3d8fb1b6ca
7 changed files with 11 additions and 9 deletions

View File

@@ -39,7 +39,7 @@ public class CoreItemsDisplay extends Table{
for(Item item : content.items()){
if(usedItems.contains(item)){
image(item.icon(Cicon.small)).padRight(3);
label(() -> core == null ? "0" : UI.formatAmount(core.items.get(item))).padRight(3);
label(() -> core == null ? "0" : UI.formatAmount(core.items.get(item))).padRight(3).left();
if(++i % 4 == 0){
row();