This commit is contained in:
Aevann1 2022-02-23 07:02:07 +02:00
parent ebce0a49e3
commit 946263d8bc
30 changed files with 65 additions and 66 deletions

View file

@ -214,7 +214,7 @@ class User(Base):
@property
@lazy
def paid_dues(self):
return self.admin_level > 1 or self.club_allowed or self.truecoins > int(environ.get("DUES").strip()) and self.club_allowed != False
return self.admin_level > 1 or self.patron > 1 or self.club_allowed in {True,None} or self.truecoins > int(environ.get("DUES").strip())
def any_block_exists(self, other):