From 7c0763d81fd4a981ee7f25f3a8b84681d82a1897 Mon Sep 17 00:00:00 2001 From: justcool393 Date: Sun, 13 Nov 2022 20:07:13 -0600 Subject: [PATCH] blackjack fixes --- files/helpers/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/helpers/actions.py b/files/helpers/actions.py index f94f896e9..89b51d757 100644 --- a/files/helpers/actions.py +++ b/files/helpers/actions.py @@ -375,7 +375,7 @@ def execute_blackjack(v, target, body, type): if notif: g.db.add(notif) g.db.flush() - elif extra_info: send_repeatable_notification(CARP_ID, f"Blackjack for {v.name}: {extra_info}") + elif extra_info: send_repeatable_notification(CARP_ID, f"Blackjack for {v.username}: {extra_info}") return False return True