feat: *auth so you don't have to type hash every time (this can be abused idk)

This commit is contained in:
ChomeNS
2025-05-22 18:50:28 +07:00
parent 8fd2f2ebb3
commit ad5e203417
12 changed files with 104 additions and 15 deletions

View File

@@ -15,6 +15,8 @@ public enum TrustLevel {
ADMIN(2, Component.text(I18nUtilities.get("trust_level.admin")).color(NamedTextColor.DARK_RED)),
OWNER(3, Component.text(I18nUtilities.get("trust_level.owner")).color(NamedTextColor.LIGHT_PURPLE));
public static final TrustLevel MAX = values()[values().length - 1];
public final int level;
public final Component component;