From 3185c8c180255b16b9db35f1045b7712d9b427b0 Mon Sep 17 00:00:00 2001 From: lilgreenland Date: Fri, 1 Nov 2019 14:27:08 -0700 Subject: [PATCH] adjusted color for vaccum --- js/bullets.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/bullets.js b/js/bullets.js index 60f9ace..d76da67 100644 --- a/js/bullets.js +++ b/js/bullets.js @@ -1181,7 +1181,7 @@ const b = { }); //draw suck const radius = 9 * this.explodeRad * (this.endCycle - game.cycle) / this.endCycleLength - ctx.fillStyle = "rgba(255,255,255,0.2)"; + ctx.fillStyle = "rgba(0,0,0,0.1)"; ctx.beginPath(); ctx.arc(this.position.x, this.position.y, radius, 0, 2 * Math.PI); ctx.fill();