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.

This commit is contained in:
evanpelle
2026-04-28 21:39:31 -06:00
parent a989bcbeb0
commit 3476bfc674
+1 -1
View File
@@ -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 {