forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-11-08 12:43:53 +02:00
parent dda1c88f4f
commit aaa98b9290
1 changed files with 4 additions and 3 deletions

View File

@ -143,10 +143,11 @@ def vote_post_comment(target_id, new, v, cls, vote_cls):
if target.author.progressivestack or (cls == Submission and (target.domain.endswith('.win') or target.domain in BOOSTED_SITES or len(target.body) > 5000 or target.sub == 'masterbaiters')):
target.realupvotes *= 2
elif cls == Submission and len(target.body) > 2000:
target.realupvotes *= 1.5
elif cls == Submission and len(target.body) < 5000:
multipler = len(target.body)/5000 + 1
target.realupvotes *= multipler
if cls == Submission and target.sub and target.sub not in ('space', 'istory', 'dinos', 'furry', 'anime', 'slackernews', 'gaybros', 'againsthateholes', 'femboy'):
if cls == Submission and target.sub and target.sub not in ('space', 'istory', 'dinos', 'furry', 'anime', 'slackernews', 'gaybros', 'againsthateholes', 'femboy', 'masterbaiters'):
target.realupvotes *= 0.7