Change Colors
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: Lixfel <agga-games@gmx.de>
Dieser Commit ist enthalten in:
Lixfel 2023-09-01 11:25:00 +02:00
Ursprung 72ebfec1a5
Commit e0c1d1c2e2

Datei anzeigen

@ -54,14 +54,14 @@ public enum UserPerm {
Map<UserPerm, Prefix> p = new EnumMap<>(UserPerm.class); Map<UserPerm, Prefix> p = new EnumMap<>(UserPerm.class);
emptyPrefix = new Prefix("§7", ""); emptyPrefix = new Prefix("§7", "");
p.put(PREFIX_NONE, emptyPrefix); p.put(PREFIX_NONE, emptyPrefix);
p.put(PREFIX_YOUTUBER, new Prefix("§5", "YT")); p.put(PREFIX_YOUTUBER, new Prefix("§7", "YT"));
p.put(PREFIX_GUIDE, new Prefix("§f", "Guide")); p.put(PREFIX_GUIDE, new Prefix("§a", "Guide"));
p.put(PREFIX_BUILDER, new Prefix("§2", "Arch")); p.put(PREFIX_SUPPORTER, new Prefix("§6", "Sup"));
p.put(PREFIX_SUPPORTER, new Prefix("§9", "Sup"));
p.put(PREFIX_MODERATOR, new Prefix("§6", "Mod")); p.put(PREFIX_MODERATOR, new Prefix("§6", "Mod"));
p.put(PREFIX_DEVELOPER, new Prefix("§b", "Dev")); p.put(PREFIX_BUILDER, new Prefix("§e", "Arch"));
p.put(PREFIX_ADMIN, new Prefix("§4", "Admin")); p.put(PREFIX_DEVELOPER, new Prefix("§e", "Dev"));
p.put(PREFIX_ADMIN, new Prefix("§e", "Admin"));
prefixes = Collections.unmodifiableMap(p); prefixes = Collections.unmodifiableMap(p);
} }