This commit is contained in:
Aevann1 2021-09-14 00:00:48 +02:00
parent 4367daf813
commit a5592241c1
2 changed files with 3 additions and 3 deletions

View file

@ -160,7 +160,7 @@ class User(Base, Stndrd, Age_times):
@property
def paid_dues(self):
return not self.club_banned and (self.admin_level == 6 or self.club_allowed or self.truecoins > int(environ.get("DUES").strip()))
return self.admin_level == 6 or self.club_allowed or self.truecoins > int(environ.get("DUES").strip())
def any_block_exists(self, other):