diff --git a/blossom/authentication/models.py b/blossom/authentication/models.py index 15077f40..d01318d8 100644 --- a/blossom/authentication/models.py +++ b/blossom/authentication/models.py @@ -180,7 +180,9 @@ def get_rank(self, override: int = None) -> str: # noqa: C901 """ gamma = override if override else self.gamma - if gamma >= 20000: + if gamma >= 30000: + return "Garnet" + elif gamma >= 20000: return "Sapphire" elif gamma >= 10000: return "Jade"