(21d03e165) Increased maximum voice chat volume further

This commit is contained in:
Joonas Rikkonen
2019-05-23 15:14:54 +03:00
parent cddc049a6a
commit 6ef3828ac1
2 changed files with 2 additions and 2 deletions
@@ -206,7 +206,7 @@ namespace Barotrauma
{
voiceChatVolume = MathHelper.Clamp(value, 0.0f, 1.0f);
#if CLIENT
GameMain.SoundManager?.SetCategoryGainMultiplier("voip", voiceChatVolume * 5.0f);
GameMain.SoundManager?.SetCategoryGainMultiplier("voip", voiceChatVolume * 20.0f);
#endif
}
}