From 402ae8e40bcaeeda0bbc50b326c5c7eb05848a4c Mon Sep 17 00:00:00 2001 From: Aevann Date: Mon, 10 Jul 2023 16:23:59 +0300 Subject: [PATCH] allow using of Shit award to negative someone --- 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 c9d10342b..612057c5f 100644 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -218,7 +218,7 @@ def award_thing(v, thing_type, id): awarded_coins = 0 if kind == 'shit': - author.charge_account('coins', awarded_coins) + author.charge_account('coins', awarded_coins, should_check_balance=False) v.pay_account('coins', awarded_coins) elif AWARDS[kind]['cosmetic']: author.pay_account('coins', awarded_coins)