diff --git a/files/routes/awards.py b/files/routes/awards.py index 14e1ca721..ded2af8c2 100644 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -210,7 +210,7 @@ def award_thing(v, thing_type, id): v.charge_account('coins', awarded_coins, should_check_balance=False) thing.author.pay_account('coins', awarded_coins) elif kind != 'spider': - if AWARDS[kind]['cosmetic']: + if AWARDS[kind]['cosmetic'] and kind not in FISTMAS_AWARDS + HOMOWEEN_AWARDS: awarded_coins = int(AWARDS[kind]['price'] * COSMETIC_AWARD_COIN_AWARD_PCT) else: awarded_coins = 0 @@ -218,7 +218,7 @@ def award_thing(v, thing_type, id): if kind == 'shit': author.charge_account('coins', awarded_coins, should_check_balance=False) v.pay_account('coins', awarded_coins) - elif AWARDS[kind]['cosmetic'] and kind not in FISTMAS_AWARDS + HOMOWEEN_AWARDS: + elif AWARDS[kind]['cosmetic']: author.pay_account('coins', awarded_coins) if thing_type == 'comment':