master
Aevann1 2022-02-24 03:55:18 +02:00
parent b6b1a56312
commit d93f2b2191
1 changed files with 1 additions and 1 deletions

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