stop 0combo from trying to play

This commit is contained in:
Bui 2018-12-31 17:03:54 +00:00
parent 1b95cea23a
commit 47e939a77c

View File

@ -413,7 +413,7 @@ class Game{
if(this.combo > this.globalScore.maxCombo){
this.globalScore.maxCombo = this.combo
}
if(this.combo === 50 || this.combo > 0 && this.combo % 100 === 0 && this.combo < 1500 || this.combo % 500 === 0){
if(this.combo === 50 || this.combo > 0 && this.combo % 100 === 0 && this.combo < 1500 || this.combo > 0 && this.combo % 500 === 0){
this.controller.playSoundMeka("combo-" + (this.combo <= 1400 ? this.combo : "over1500"))
}
this.view.updateCombo(this.combo)