

A small, client-side quality-of-life mod for Lethal Company.
This mod adds a global voice volume slider to the Quick Menu that adjusts all player voice volumes at once, and can automatically set everyone to maximum volume when joining a lobby.
The idea for this mod comes from the NicheTweaks mod.
NicheTweaks includes a global voice volume slider among many other tweaks, but I personally only needed this single feature. To keep my mod setup minimal and focused, I extracted this functionality and rebuilt it as a standalone, lightweight mod.
The goal of this mod is to do one thing only, and do it reliably.
Config file location:
BepInEx/config/HoppinHauler.GlobalVoiceVolume.cfg
Available options:
[General]
Enabled = true
ApplyDefaultOnStart = true
DefaultVolumeRaw = 9999
Option notes:
Enabled
Enables or disables the mod.
ApplyDefaultOnStart
Automatically applies the default volume when the Quick Menu initializes (for example, when joining a lobby).
DefaultVolumeRaw
Default value in the game's slider units.
The voice slider range is usually -20 to 20.
Set this to 9999 to always use the slider's maximum value.
To automatically hear everyone at maximum volume when joining a lobby:
Enabled = true
ApplyDefaultOnStart = true
DefaultVolumeRaw = 9999
NicheTweaks — original inspiration for the global voice volume feature.
MIT