Skip to content

Commit 006abd1

Browse files
committed
fix enabled variable typo
1 parent a5b1e25 commit 006abd1

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/plugins/SoundPlugin.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -413,10 +413,10 @@ export class SoundPlugin extends ButtonPlugin {
413413
}
414414

415415
// 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;
416+
this.soundMutedEnabled = !!features.data.sound;
417+
this.musicMutedEnabled = !!features.data.music;
418+
this.sfxMutedEnabled = !!features.data.sfx;
419+
this.voMutedEnabled = !!features.data.vo;
420420

421421
this.soundVolumeEnabled = !!features.data.soundVolume;
422422
this.musicVolumeEnabled = !!features.data.musicVolume;

0 commit comments

Comments
 (0)