add this back

This commit is contained in:
Telesphoreo 2022-04-24 15:35:48 -05:00
parent 6352975825
commit bc3893e2db
No known key found for this signature in database
GPG Key ID: B5CDDEBA526C0130
1 changed files with 5 additions and 0 deletions

View File

@ -46,6 +46,11 @@ public enum Rank implements IRank
return this.level >= rank.getLevel();
}
public boolean isAtLeast(Rank rank)
{
return this.level >= rank.getLevel();
}
public Component getPrefix()
{
return PlexUtils.mmDeserialize(this.prefix);