Commit 806b21df authored by Bui's avatar Bui

add over1500 combo sound

parent 16f3366a
......@@ -63,6 +63,7 @@ var assets = {
"combo-1200-meka.wav",
"combo-1300-meka.wav",
"combo-1400-meka.wav",
"combo-over1500-meka.wav",
"fullcombo-meka.wav",
"song-select.wav",
......@@ -94,6 +95,7 @@ var assets = {
"combo-1200.wav",
"combo-1300.wav",
"combo-1400.wav",
"combo-over1500.wav",
"fullcombo.wav",
"gamefullcombo.wav",
......
......@@ -413,8 +413,8 @@ 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 <= 1400){
this.controller.playSoundMeka("combo-" + this.combo)
if(this.combo === 50 || this.combo > 0 && this.combo % 100 === 0){
this.controller.playSoundMeka("combo-" + (this.combo <= 1400 ? this.combo : "over1500"))
}
this.view.updateCombo(this.combo)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment