From 0f3658b20f165c353e13214b0edcf2d6fe880693 Mon Sep 17 00:00:00 2001 From: Half-Shot Date: Tue, 12 Nov 2024 07:08:43 +0000 Subject: [PATCH] Set the default sound effect volume to 50%. --- src/settings/settings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings/settings.ts b/src/settings/settings.ts index f2f7980b..b2da1674 100644 --- a/src/settings/settings.ts +++ b/src/settings/settings.ts @@ -102,7 +102,7 @@ export const playReactionsSound = new Setting( export const soundEffectVolumeSetting = new Setting( "sound-effect-volume", - 1, + 0.5, ); export const alwaysShowSelf = new Setting("always-show-self", true);