Decrease number of fireworks on high score

This commit is contained in:
Ryan Huffman 2015-11-04 12:55:18 -08:00
parent 8056498f39
commit de69b2298b

View file

@ -466,7 +466,7 @@ Baseball.prototype = {
print("PLAYING SHOW")
var numberOfFireworks = Math.floor(this.distanceTraveled / 100);
if (this.wasHighScore) {
numberOfFireworks = 30;
numberOfFireworks = 20;
}
playFireworkShow(numberOfFireworks, 2000);
}