mirror of
https://github.com/yuukiwww/taiko-web.git
synced 2024-10-22 17:05:49 +02:00
stop 0combo from trying to play
This commit is contained in:
parent
1b95cea23a
commit
47e939a77c
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user