remove double coins for pokemon emojis

pull/232/head
Aevann 2024-07-22 19:08:43 +03:00
parent 071eb86be9
commit c504fc4410
1 changed files with 2 additions and 5 deletions

View File

@ -226,15 +226,12 @@ def approve_emoji(v, name):
new_path = f'/asset_submissions/emojis/original/{emoji.name}.{i.format.lower()}'
rename(highquality, new_path)
if 'pkmn' in emoji.tags: amount = 500
else: amount = 250
pay_reason = f'Reward for making <img loading="lazy" data-bs-toggle="tooltip" alt=":{emoji.name}:" title=":{emoji.name}:" src="{SITE_FULL_IMAGES}/e/{emoji.name}.webp">'
author.pay_account('coins', amount, pay_reason)
author.pay_account('coins', 250, pay_reason)
g.db.add(author)
if v.id != author.id:
msg = f"@{v.username} (a site admin) has approved an emoji you made: :{emoji.name}:\n\nYou have received {amount} coins as a reward!"
msg = f"@{v.username} (a site admin) has approved an emoji you made: :{emoji.name}:\n\nYou have received 250 coins as a reward!"
if comment:
msg += f"\nComment: `{comment}`"