From bda58afdceda3c283b5526ba273798b8bccb26fb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 21 Oct 2025 14:04:53 +0000 Subject: [PATCH] Set game background back to black --- game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.js b/game.js index 6c2becd..4c059ee 100644 --- a/game.js +++ b/game.js @@ -125,7 +125,7 @@ var Starfield = function (speed, opacity, numStars, clear) { // If the clear option is set, // make the background black instead of transparent if (clear) { - starCtx.fillStyle = "#0F0"; + starCtx.fillStyle = "#000"; starCtx.fillRect(0, 0, stars.width, stars.height); }