Adjust jeopardy clue cards

This commit is contained in:
Dragon Fire
2024-05-10 00:19:53 -04:00
parent a30e3b987a
commit 6f049246cc
2 changed files with 3 additions and 21 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ module.exports = class JeopardyCommand extends Command {
for (let i = 0; i < lines.length; i++) {
const height = topMost + ((52 + 20) * i);
ctx.fillStyle = 'black';
ctx.fillText(lines[i], (canvas.width / 2) + 6, height + 6);
ctx.fillText(lines[i], (canvas.width / 2) + 3, height + 3);
ctx.fillStyle = 'white';
ctx.fillText(lines[i], canvas.width / 2, height);
}