master
Aevann1 2022-02-24 04:52:46 +02:00
parent dd5051203a
commit 791fff3d37
2 changed files with 4 additions and 2 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 or self.club_allowed or self.patron > 1 or (self.patron == 1 and self.truecoins > dues/10) or (self.club_allowed != False and self.truecoins > dues)
@lazy
def any_block_exists(self, other):

File diff suppressed because one or more lines are too long