From 96d21acc57ba01e2c39553784222d042e6cc6496 Mon Sep 17 00:00:00 2001 From: Nathan Date: Sun, 13 Oct 2024 14:38:06 +0100 Subject: [PATCH] Fix deck count --- public/board.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/board.js b/public/board.js index 1e5cedf..ddba2e1 100644 --- a/public/board.js +++ b/public/board.js @@ -434,7 +434,7 @@ class Board{ // Draw deck count text // TODO: Center in the circle ctx.fillStyle = '#000'; - ctx.fillText(deckLength, textx, texty); + ctx.fillText(deckLength+1, textx, texty); } }