exclude benefactor from bypassing chat truescore minimum

master
Aevann 2024-04-28 00:39:37 +03:00
parent 6b27d9caa1
commit e878f6267a
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ class User(Base):
return True
if self.truescore >= TRUESCORE_MINIMUM:
return True
if self.patron:
if self.patron > 1:
return True
return False