From 3476bfc674971b0d2a913308a981f8fecda18ddf Mon Sep 17 00:00:00 2001 From: evanpelle Date: Tue, 28 Apr 2026 21:39:31 -0600 Subject: [PATCH] Changed the default in UserSettings.ts:386 from 1 to 0. New users (or anyone who hasn't touched the slider) will now start with sound effects muted. --- src/core/game/UserSettings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/game/UserSettings.ts b/src/core/game/UserSettings.ts index 018eb26f8..5062c7936 100644 --- a/src/core/game/UserSettings.ts +++ b/src/core/game/UserSettings.ts @@ -383,7 +383,7 @@ export class UserSettings { } soundEffectsVolume(): number { - return this.getFloat("settings.soundEffectsVolume", 1); + return this.getFloat("settings.soundEffectsVolume", 0); } setSoundEffectsVolume(volume: number): void {