From 32dc989ebb3c82a61f2c86df09c21eb63b16399d Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sat, 26 Nov 2022 01:50:25 +0200 Subject: [PATCH] make shit award not give DC --- 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 6b3a18d9f..0aad201cb 100644 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -198,7 +198,7 @@ def award_thing(v, thing_type, id): msg = f"{safe_username} is under the effect of a deflector award; your {AWARDS[kind]['title']} Award has been deflected back to you :marseytroll:" send_repeatable_notification(v.id, msg) author = v - elif kind != 'spider': + elif kind not in ('spider', 'shit'): awarded_coins = int(AWARDS[kind]['price'] * COSMETIC_AWARD_COIN_AWARD_PCT) if AWARDS[kind]['cosmetic'] else 0 if AWARDS[kind]['cosmetic']: author.pay_account('coins', awarded_coins)