forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-03-06 05:44:09 +02:00
parent ae55735919
commit 2e542c3fa6
1 changed files with 2 additions and 1 deletions

View File

@ -470,7 +470,8 @@ class Comment(Base):
dealer_hand = split_result[1].split('/')[0] if blackjack_status == 'active' else split_result[1]
dealer_hand = dealer_hand.replace('X', '10')
wager = split_result[4]
kind = split_result[5]
try: kind = split_result[5]
except: kind = "coins"
currency_kind = "Coins" if kind == "coins" else "Marseybucks"
body = f"<span id='blackjack-{self.id}' class='ml-2'><em>{player_hand} vs. {dealer_hand}</em>"