remove cap on stalker award

pull/213/head
Aevann 2023-10-11 18:27:54 +03:00
parent 739c0fac5c
commit a66d5ef174
1 changed files with 1 additions and 1 deletions

View File

@ -258,7 +258,7 @@ class Post(Base):
return 0
num = len([x for x in self.awards if x.kind == kind])
if num > 4 and kind not in {"shit", "fireflies", "gingerbread", "pumpkin"}:
if num > 4 and kind not in {"shit", "fireflies", "gingerbread", "pumpkin", "stalker"}:
return 4
return num