Revert "add bit of random to the confetti"

This reverts commit 913e18579f.
This commit is contained in:
Jeff Atwood 2016-09-21 15:38:44 -07:00 committed by Robin Ward
parent 3f09ef70eb
commit 3ac348e898

View file

@ -36,7 +36,7 @@ class Particle {
this.ang = 0; this.ang = 0;
} }
this.x = this.origX + (this.radius * Math.sin(this.ang)) + Math.floor(Math.random() * 3); this.x = this.origX + (this.radius * Math.sin(this.ang));
} }
} }