forked from rDrama/rDrama
1
0
Fork 0

remove TS limit for !YOU!

master
Aevann1 2022-11-26 22:10:40 +02:00
parent bb153e541d
commit 39bb04bdb8
1 changed files with 1 additions and 1 deletions

View File

@ -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: