diff options
| author | historia <[not public]> | 2026-08-03 16:30:25 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-08-03 16:30:25 -0400 |
| commit | fe15f2ffeb5685b056650a61aa0e23965ef51e95 (patch) | |
| tree | fa8293fdb2b274fbecf882d468246e28cade1628 /internal/game/casino.go | |
| parent | f2c4a58727169a03b8102704888d1579d26b28c8 (diff) | |
| download | thehouseoficarus-fe15f2ffeb5685b056650a61aa0e23965ef51e95.tar.gz | |
fix: card_style=white unicode characters for top/bottom
Diffstat (limited to 'internal/game/casino.go')
| -rw-r--r-- | internal/game/casino.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/game/casino.go b/internal/game/casino.go index 9666c41..fc400a7 100644 --- a/internal/game/casino.go +++ b/internal/game/casino.go @@ -448,9 +448,9 @@ func generatedCardArt(rank, suit string, size int, unicode bool, style string) [ vertical = "│" } if unicode && style == "light" { - lines := []string{strings.Repeat("▀", size)} + lines := []string{strings.Repeat("▄", size)} lines = append(lines, generatedCardBody(rank, suit, size, unicode, vertical)...) - return append(lines, strings.Repeat("▄", size)) + return append(lines, strings.Repeat("▀", size)) } lines := []string{left + strings.Repeat(border, size-2) + right} lines = append(lines, generatedCardBody(rank, suit, size, unicode, vertical)...) |
