This commit is contained in:
Aevann1 2021-09-14 00:01:21 +02:00
parent a5592241c1
commit 9c5af8b779

View file

@ -160,7 +160,7 @@ class User(Base, Stndrd, Age_times):
@property
def paid_dues(self):
return 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()) and not self.club_banned)
def any_block_exists(self, other):