We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5b1e25 commit 006abd1Copy full SHA for 006abd1
1 file changed
src/plugins/SoundPlugin.js
@@ -413,10 +413,10 @@ export class SoundPlugin extends ButtonPlugin {
413
}
414
415
// Confirm that the mute features are supported
416
- this.soundMuteEnabled = !!features.data.sound;
417
- this.musicMuteEnabled = !!features.data.music;
418
- this.sfxMuteEnabled = !!features.data.sfx;
419
- this.voMuteEnabled = !!features.data.vo;
+ this.soundMutedEnabled = !!features.data.sound;
+ this.musicMutedEnabled = !!features.data.music;
+ this.sfxMutedEnabled = !!features.data.sfx;
+ this.voMutedEnabled = !!features.data.vo;
420
421
this.soundVolumeEnabled = !!features.data.soundVolume;
422
this.musicVolumeEnabled = !!features.data.musicVolume;
0 commit comments