From 78584fea3492d4158988220a8a84131c66d5f932 Mon Sep 17 00:00:00 2001 From: YoyoNow Date: Thu, 3 Jul 2025 16:38:46 +0200 Subject: [PATCH] Update UserPerm --- CommonCore/SQL/src/de/steamwar/sql/UserPerm.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/CommonCore/SQL/src/de/steamwar/sql/UserPerm.java b/CommonCore/SQL/src/de/steamwar/sql/UserPerm.java index af710265..c659ac0d 100644 --- a/CommonCore/SQL/src/de/steamwar/sql/UserPerm.java +++ b/CommonCore/SQL/src/de/steamwar/sql/UserPerm.java @@ -48,18 +48,19 @@ public enum UserPerm { public static final Map prefixes; public static final Prefix emptyPrefix; static { + // https://www.digminecraft.com/lists/color_list_pc.php SqlTypeMapper.nameEnumMapper(UserPerm.class); Map p = new EnumMap<>(UserPerm.class); emptyPrefix = new Prefix("§7", ""); p.put(PREFIX_NONE, emptyPrefix); p.put(PREFIX_YOUTUBER, new Prefix("§7", "YT")); - p.put(PREFIX_GUIDE, new Prefix("§a", "Guide")); + p.put(PREFIX_GUIDE, new Prefix("§a", "Guide")); // 55FF55 - p.put(PREFIX_SUPPORTER, new Prefix("§x§1§e§3§a§8§a", "Sup")); // #1e3a8a - p.put(PREFIX_MODERATOR, new Prefix("§x§9§2§4§0§0§e", "Mod")); // #92400e - p.put(PREFIX_BUILDER, new Prefix("§x§1§5§8§0§3§d", "Arch")); // #15803d - p.put(PREFIX_DEVELOPER, new Prefix("§3", "Dev")); // #075985 - p.put(PREFIX_ADMIN, new Prefix("§x§9§9§1§b§1§b", "Admin")); // #991b1b + p.put(PREFIX_SUPPORTER, new Prefix("§x§3§d§4§8§e§3", "Sup")); // 3D58E3 + p.put(PREFIX_MODERATOR, new Prefix("§x§c§7§5§e§2§2", "Mod")); // C75E22 + p.put(PREFIX_BUILDER, new Prefix("§2", "Arch")); // 00AA00 + p.put(PREFIX_DEVELOPER, new Prefix("§3", "Dev")); // 00AAAA + p.put(PREFIX_ADMIN, new Prefix("§x§F§2§2§8§2§4", "Admin")); // F22824 prefixes = Collections.unmodifiableMap(p); }