This commit is contained in:
Aevann1 2022-02-24 03:55:18 +02:00
parent a6a0fae9f4
commit 032b8cb385

View file

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