default case

This commit is contained in:
pypy
2021-01-21 12:30:42 +09:00
parent a1c681625f
commit d37bcde2cc
2 changed files with 9 additions and 0 deletions

View File

@@ -4751,6 +4751,9 @@ speechSynthesis.getVoices();
data: gameLog.json
};
break;
default:
break;
}
if (tableData !== null) {

View File

@@ -1014,6 +1014,8 @@ speechSynthesis.getVoices();
case 'unmute':
text = `<strong>${noty.sourceDisplayName}</strong> has unmuted you`;
break;
default:
break;
}
if (text) {
new Noty({
@@ -1084,6 +1086,8 @@ speechSynthesis.getVoices();
case 'unmute':
this.speak(`${noty.sourceDisplayName} has unmuted you`);
break;
default:
break;
}
}
if ((this.config.desktopToast) && (this.isGameNoVR)) {
@@ -1143,6 +1147,8 @@ speechSynthesis.getVoices();
case 'DisplayName':
AppApi.DesktopNotification(noty.previousDisplayName, `changed their name to ${noty.displayName}`, imageURL);
break;
default:
break;
}
}
}