forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-02-25 12:52:47 +02:00
parent c7f0afbc96
commit 1d6190009d
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 or self.club_allowed or self.patron > 1 or (self.patron == 1 and self.truecoins > dues/5) or (self.club_allowed != False and self.truecoins > dues)
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):