From f59d3e6b12bab8025fed57442e9b0a98fb32e2ab Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sat, 26 Nov 2022 22:10:40 +0200 Subject: [PATCH] remove TS limit for !YOU! --- files/classes/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/classes/user.py b/files/classes/user.py index 9231e27e7..5f5880771 100644 --- a/files/classes/user.py +++ b/files/classes/user.py @@ -1000,7 +1000,7 @@ class User(Base): if not cls.can_see(user, other.author): return False if user and user.id == other.author_id: return True if isinstance(other, Submission): - if "!YOU!" in other.title and not (user and (user.client or user.truescore > 5000)): return False + if "!YOU!" in other.title and not user: return False if other.sub and not cls.can_see(user, other.subr): return False else: if not other.parent_submission: