From 230bbb41183d4e1a3ed39d1c3be6115b598f01c5 Mon Sep 17 00:00:00 2001 From: Lixfel Date: Sat, 23 May 2020 11:14:58 +0200 Subject: [PATCH] Show ranks in gui list Signed-off-by: Lixfel --- .../src/de/steamwar/schematicsystem/commands/GUI.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SchematicSystem_Main/src/de/steamwar/schematicsystem/commands/GUI.java b/SchematicSystem_Main/src/de/steamwar/schematicsystem/commands/GUI.java index 63ac2b3..72a8407 100644 --- a/SchematicSystem_Main/src/de/steamwar/schematicsystem/commands/GUI.java +++ b/SchematicSystem_Main/src/de/steamwar/schematicsystem/commands/GUI.java @@ -1,5 +1,6 @@ package de.steamwar.schematicsystem.commands; +import com.google.common.collect.Lists; import de.steamwar.inventory.SWInventory; import de.steamwar.inventory.SWItem; import de.steamwar.inventory.SWListInv; @@ -165,6 +166,8 @@ class GUI { m = SWItem.getMaterial(schem.getItem()); SWItem item = new SWItem(m, "§e" + schem.getSchemName(), Collections.singletonList("§7" + schem.getSchemType().name()), !schem.getSchemType().writeable(), click -> {}); + if(schem.getRank() > 0) + item.setLore(Lists.newArrayList("§7" + schem.getSchemType().name(), "§8Rang " + schem.getRank())); schemList.add(new SWListInv.SWListEntry<>(item, schem)); }