This commit is contained in:
Aevann1 2021-11-16 00:13:29 +02:00
parent 08618b4d81
commit ef0b875ebd
19 changed files with 84 additions and 89 deletions

View file

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