From c195272fbf1eaae9bf2d70132d7e543fb0c95ddc Mon Sep 17 00:00:00 2001 From: icslucas Date: Sun, 27 Jul 2025 18:18:33 +0200 Subject: [PATCH] Prettier --- src/client/SoundManager.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/client/SoundManager.ts b/src/client/SoundManager.ts index f9a9ef881..3a8c0bd87 100644 --- a/src/client/SoundManager.ts +++ b/src/client/SoundManager.ts @@ -155,12 +155,18 @@ class SoundManager { } public muteSoundEffects(): void { - this.soundEffectsVolume.gain.setValueAtTime(0, this.audioContext.currentTime); + this.soundEffectsVolume.gain.setValueAtTime( + 0, + this.audioContext.currentTime, + ); this.userSettings.setMuteSoundEffects(true); } public unmuteSoundEffects(): void { - this.soundEffectsVolume.gain.setValueAtTime(1, this.audioContext.currentTime); + this.soundEffectsVolume.gain.setValueAtTime( + 1, + this.audioContext.currentTime, + ); this.userSettings.setMuteSoundEffects(false); }