mirror of
https://github.com/CivMC/Civ.git
synced 2026-07-18 00:20:44 +00:00
yellow
This commit is contained in:
@@ -52,7 +52,7 @@ public class ArenaGui {
|
||||
if (isOwner) {
|
||||
meta.setEnchantmentGlintOverride(true);
|
||||
}
|
||||
meta.itemName(Component.text(arena.displayName(), NamedTextColor.LIGHT_PURPLE));
|
||||
meta.itemName(Component.text(arena.displayName(), NamedTextColor.YELLOW));
|
||||
|
||||
List<Component> lore = new ArrayList<>();
|
||||
lore.add(Component.text("Created by " + loadedArena.owner().getName(), NamedTextColor.AQUA).decoration(TextDecoration.ITALIC, false));
|
||||
|
||||
@@ -46,7 +46,7 @@ public class ArenaSelectionGui {
|
||||
for (Arena arena : arenaDao.getArenas()) {
|
||||
ItemStack item = new ItemStack(arena.icon());
|
||||
ItemMeta meta = item.getItemMeta();
|
||||
meta.itemName(Component.text(arena.displayName(), NamedTextColor.LIGHT_PURPLE));
|
||||
meta.itemName(Component.text(arena.displayName(), NamedTextColor.YELLOW));
|
||||
item.setItemMeta(meta);
|
||||
inventory.setSlot(new Clickable(item) {
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user