mirror of
https://github.com/yuukiwww/taiko-web.git
synced 2024-10-22 17:05:49 +02:00
Fix warning not showing in session mode
This commit is contained in:
parent
95eef4e8db
commit
47b769c8b3
@ -711,7 +711,9 @@ class SongSelect{
|
||||
|
||||
this.playSound("se_don", 0, fromP2 ? fromP2.player : false)
|
||||
assets.sounds["v_songsel"].stop()
|
||||
this.playSound("v_diffsel", 0.3)
|
||||
if(!this.showWarning){
|
||||
this.playSound("v_diffsel", 0.3)
|
||||
}
|
||||
pageEvents.send("song-select-difficulty", currentSong)
|
||||
}else if(currentSong.action === "back"){
|
||||
this.clean()
|
||||
@ -1024,7 +1026,7 @@ class SongSelect{
|
||||
}
|
||||
}
|
||||
|
||||
if(screen === "song" && (this.showWarning && !this.showWarning.shown || scoreStorage.scoreSaveFailed)){
|
||||
if((screen === "song" || screen === "difficulty") && (this.showWarning && !this.showWarning.shown || scoreStorage.scoreSaveFailed)){
|
||||
if(!this.showWarning){
|
||||
this.showWarning = {name: "scoreSaveFailed"}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user