From c491b5deb29f02d86e9fdae8753704468d60606b Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Wed, 14 Dec 2022 16:03:18 +0200 Subject: [PATCH] disable shit award 15 coins --- files/routes/awards.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/awards.py b/files/routes/awards.py index 2b5d54235a..8667b63e85 100644 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -200,7 +200,7 @@ def award_thing(v, thing_type, id): send_repeatable_notification(v.id, msg) author = v elif kind != 'spider': - awarded_coins = int(AWARDS[kind]['price'] * COSMETIC_AWARD_COIN_AWARD_PCT) if AWARDS[kind]['cosmetic'] else 0 + awarded_coins = int(AWARDS[kind]['price'] * COSMETIC_AWARD_COIN_AWARD_PCT) if AWARDS[kind]['cosmetic'] and kind != 'shit' else 0 if AWARDS[kind]['cosmetic'] and kind != 'shit': author.pay_account('coins', awarded_coins)