From 81530e4914f6a478bbc00ad0a9b61177d123aef0 Mon Sep 17 00:00:00 2001 From: Aevann Date: Mon, 28 Oct 2024 22:07:20 +0300 Subject: [PATCH] raise the requirement --- files/classes/user.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/files/classes/user.py b/files/classes/user.py index 7fc7d429a..edb5fbcae 100644 --- a/files/classes/user.py +++ b/files/classes/user.py @@ -1383,7 +1383,8 @@ class User(Base): if self.patron: return True - if self.truescore >= TRUESCORE_DONATE_MINIMUM: return True + if self.truescore >= TRUESCORE_MINIMUM and self.created_utc < one_month_ago: + return True return False