forked from MarseyWorld/MarseyWorld
limit stalker award to 25 to prevent 404 images
parent
223e4bf71f
commit
19754f0213
|
@ -265,6 +265,9 @@ class Post(Base):
|
|||
if kind in {"gingerbread", "pumpkin"}:
|
||||
return min(num, 10)
|
||||
|
||||
if kind == "stalker":
|
||||
return min(num, 25)
|
||||
|
||||
return min(num, 4)
|
||||
|
||||
@lazy
|
||||
|
|
Loading…
Reference in New Issue