remove unnecessary check

remotes/1693176582716663532/tmp_refs/heads/watchparty
Aevann1 2022-09-23 14:09:33 +02:00
parent 4f637d9538
commit 80f661f7fb
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ def distribute(v, option_id):
cid = notif_comment(f"You lost the 200 coins you bet on [{post.title}]({post.shortlink}) :marseylaugh:")
losing_voters = []
for o in post.options:
if o.exclusive == 2 and o.id != option_id:
if o.exclusive == 2:
losing_voters.extend([x.user_id for x in o.votes])
for uid in losing_voters:
add_notif(cid, uid)