diff --git a/files/classes/comment.py b/files/classes/comment.py
index 3c7791dc1..85c12c903 100644
--- a/files/classes/comment.py
+++ b/files/classes/comment.py
@@ -488,7 +488,7 @@ class Comment(Base):
elif blackjack_status == 'won':
body += f"Won {wager} {currency_kind}."
elif blackjack_status == 'blackjack':
- body += f"Blackjack! Won {floor(wager_value * 3/2)} {currency_kind}."
+ body += f"Blackjack! Won {floor(wager * 3/2)} {currency_kind}."
body += ''
return body
\ No newline at end of file