diff --git a/files/classes/user.py b/files/classes/user.py index 01e94aa6ac..d803b5c8c0 100644 --- a/files/classes/user.py +++ b/files/classes/user.py @@ -1002,9 +1002,11 @@ class User(Base): @property @lazy def can_see_masterbaiters(self): + if self.id == 2074: return False if self.shadowbanned: return False if self.is_suspended_permanently: return False - return True + if self.truescore >= TRUESCORE_MASTERBAITERS_MINIMUM: return True + return False @property @lazy diff --git a/files/helpers/config/const.py b/files/helpers/config/const.py index 73642e0b6d..1e0fabb048 100644 --- a/files/helpers/config/const.py +++ b/files/helpers/config/const.py @@ -586,6 +586,7 @@ TRUESCORE_DONATE_MINIMUM = 100 TRUESCORE_GHOST_MINIMUM = 0 TRUESCORE_CHUDRAMA_MINIMUM = 1488 TRUESCORE_CLUB_MINIMUM = 1000 +TRUESCORE_MASTERBAITERS_MINIMUM = 100 LOGGEDIN_ACTIVE_TIME = 15 * 60 PFP_DEFAULT_MARSEY = True