From d93f2b21913f01677c0fcd8efd5c3d27ca0b778a Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Thu, 24 Feb 2022 03:55:18 +0200 Subject: [PATCH] fds --- files/classes/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/classes/user.py b/files/classes/user.py index 93acbef32..d4a975cc7 100644 --- a/files/classes/user.py +++ b/files/classes/user.py @@ -214,7 +214,7 @@ class User(Base): @property @lazy def paid_dues(self): - return self.admin_level > 1 or self.patron > 1 or self.club_allowed in {True,None} or self.truecoins > int(environ.get("DUES").strip()) + return self.admin_level > 1 or self.club_allowed or self.truecoins > int(environ.get("DUES").strip()) and self.club_allowed != False @lazy def any_block_exists(self, other):