diff options
author | elioat <elioat@tilde.institute> | 2024-12-28 07:56:25 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2024-12-28 07:56:25 -0500 |
commit | ce34a26bb07a82f31853cc4da7050fc0318dab42 (patch) | |
tree | 6759a50e9b3458f15a305fa964b8ae093a61e74c /html/rogue | |
parent | 4f1da58e67b3438c00fb09051bd3ccb6213d298d (diff) | |
download | tour-ce34a26bb07a82f31853cc4da7050fc0318dab42.tar.gz |
*
Diffstat (limited to 'html/rogue')
-rw-r--r-- | html/rogue/js/game.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/html/rogue/js/game.js b/html/rogue/js/game.js index 3de54fc..53700c9 100644 --- a/html/rogue/js/game.js +++ b/html/rogue/js/game.js @@ -65,7 +65,7 @@ function drawHex(ctx, x, y, hex) { if (!FogOfWar.isRevealed(hex)) { ctx.strokeStyle = 'rgba(0, 0, 0, 1)'; // Match full shadow color } else if (!FogOfWar.isVisible(hex)) { - ctx.strokeStyle = 'rgba(0, 0, 0, 0.5)'; + ctx.strokeStyle = 'rgba(0, 0, 0, 0.25)'; } else { ctx.strokeStyle = HexGrid.COLOR; // Normal grid color } |