From: Geoffrey Allott Date: Mon, 22 Mar 2021 21:30:19 +0000 (+0000) Subject: fix heart symbol X-Git-Url: https://git.pointlesshacks.com/?a=commitdiff_plain;h=a4591e619be1f4f4553c3d78ed87a524a9610ba3;p=pokerwave.git fix heart symbol --- diff --git a/site/modules/card.js b/site/modules/card.js index be14c0f..032575b 100644 --- a/site/modules/card.js +++ b/site/modules/card.js @@ -29,7 +29,7 @@ export function pretty_suit(suit) { switch (suit) { case "Clubs": return "♣"; case "Diamonds": return "♢"; - case "Hearts": return "♢"; + case "Hearts": return "♡"; case "Spades": return "♠"; } }