diff --git a/package.json b/package.json index efb6e3f..f7cc3e3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "shelem", - "version": "1.1.5", + "version": "1.1.6", "description": "Shelem card game — multiplayer", "main": "server.js", "scripts": { diff --git a/public/app.js b/public/app.js index 4f6a5cc..8fafce9 100644 --- a/public/app.js +++ b/public/app.js @@ -235,7 +235,7 @@ function show(id) { const el = $(id); if (el) el.classList.remove('hidden'); } function hide(id) { const el = $(id); if (el) el.classList.add('hidden'); } function cardSvg(code) { - if (code === 'JOKER-COLOR') return '/cards/JOKER-1.svg'; + if (code === 'JOKER-COLOR') return '/cards/JOKER-3.svg'; if (code === 'JOKER-BLACK') return '/cards/JOKER-2.svg'; const [suit, rank] = code.split('-'); const suitMap = { C: 'CLUB', D: 'DIAMOND', H: 'HEART', S: 'SPADE' };