From 23ef272d862c198f0f4fa9fb917d31e73578a817 Mon Sep 17 00:00:00 2001 From: Marcel Date: Thu, 10 May 2018 12:39:58 +0200 Subject: [PATCH] Fixes --- animations/click.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/animations/click.js b/animations/click.js index 5efab84..b33c1d2 100644 --- a/animations/click.js +++ b/animations/click.js @@ -139,7 +139,7 @@ function particle(x, y) { this.yv = randInt(particlesMinSpeed, particlesMaxSpeed, false); this.size = randInt(particlesMinSize, particlesMaxSize, true); this.r = randInt(2, 36); - this.g = randInt(135, 150; + this.g = randInt(135, 150); this.b = randInt(190, 255); } @@ -159,4 +159,4 @@ function randInt(min, max, positive) { } -draw(); +drawClickAnimation();