Fixed item display being too close to top left of screen

This commit is contained in:
Anuken 2019-02-17 11:36:54 -05:00
parent 5e2a455045
commit 86aeabc911

View File

@ -26,7 +26,7 @@ public class ItemsDisplay extends Table{
margin(0);
table("flat", t -> {
t.margin(2);
t.margin(10).marginLeft(15).marginTop(15f);
ObjectIntMap<Item> items = data.items();
for(Item item : content.items()){
if(item.type == ItemType.material && data.isUnlocked(item)){